-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
166 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
import DefaultLayout from '../layouts/DefaultLayout'; | ||
import exampleImage from '../assets/example-confetti.gif'; | ||
import cody from '../assets/cody.jpeg'; | ||
// Import navigateHome from '../assets/navigate-home.mp4'; | ||
|
||
export default function Help() { | ||
return ( | ||
<DefaultLayout title="Help"> | ||
<div className="px-4 pb-4"> | ||
<div className="grid grid-cols-2 gap-x-4 gap-y-6 lt-sm:grid-cols-1 max-w-screen-lg w-full mx-auto"> | ||
<div className="flex flex-col gap-2 self-center"> | ||
<div className="text-5xl flex-shrink-0 font-bold"> | ||
What is Slidr? | ||
</div> | ||
<div> | ||
Slidr is an interactive presentation framework that facilitates | ||
audiences interacting in realtime with a presenter. Slidr works | ||
both live and remote, always focusing on making amazing | ||
presentations. Best of all, it's free! | ||
</div> | ||
</div> | ||
{/* <div>another div</div> | ||
<div>another div 1</div> */} | ||
<img className="object-cover self-center" src={exampleImage} /> | ||
<div className="col-span-full text-4xl font-bold text-center mt-20"> | ||
Getting Started | ||
</div> | ||
<div className="col-span-full"> | ||
Here's how to present your own presentation with Slidr: | ||
</div> | ||
<ol className="col-span-full flex flex-col gap-6"> | ||
<li className="flex flex-col"> | ||
<div className="flex flex-row items-end justify-start gap-3 text-teal"> | ||
<div className="i-line-md-account text-4rem" /> | ||
<div className="font-bold align-baseline text-2xl"> | ||
Step 1: Sign In | ||
</div> | ||
</div> | ||
<div className="pl-1"> | ||
By signing in, you automatically create or reconnect to your | ||
existing account. Sign-in is easy: enter your email then click | ||
the link in your email. | ||
</div> | ||
</li> | ||
<li className="flex flex-col"> | ||
<div className="flex flex-row items-end justify-start gap-3 text-teal"> | ||
<div className="i-line-md-uploading-loop text-4rem" /> | ||
<div className="font-bold align-baseline text-2xl"> | ||
Step 2: Upload | ||
</div> | ||
</div> | ||
<div className="pl-1"> | ||
Once you're signed in, the upload button will appear in the | ||
top right menu. Click on it to upload your pdf presentation. | ||
Slidr let's you bring your own presentation and use | ||
whatever tool you already love. Whether you're using | ||
PowerPoint, Google Slides, Keynote, or something else, just be | ||
sure to export your presentation with 1 slide per page in PDF. | ||
Once the presentation is uploaded and processed, you can give it | ||
a meaningful title too. | ||
</div> | ||
</li> | ||
<li className="flex flex-col"> | ||
<div className="flex flex-row items-end justify-start gap-3 text-teal"> | ||
<div className="i-line-md-computer text-4rem" /> | ||
<div className="font-bold align-baseline text-2xl"> | ||
Step 3: Present | ||
</div> | ||
</div> | ||
<div className="pl-1"> | ||
Now that your presentation is uploaded, head over the homepage | ||
by clicking on the Slidr link at the top left of the screen. You | ||
should see your presentation towards the top. Click on the | ||
Present button underneath your presentation to start presenting. | ||
</div> | ||
{/* <div className="flex flex-row justify-center"> | ||
<video autoPlay loop width="300"> | ||
<source src={navigateHome} type="video/mp4" /> | ||
</video> | ||
</div> */} | ||
</li> | ||
</ol> | ||
<div className="col-span-full text-4xl font-bold text-center mt-20"> | ||
Getting Involved | ||
</div> | ||
<div className="col-span-full justify-self-center inline-block w-25 h-25 i-line-md-github-loop" /> | ||
<div className="col-span-full"> | ||
Slidr is 100% open source software! Come and help make Slidr better. | ||
We're building a community around Slidr and it's a great | ||
time to get involved. We need folks of all backgrounds and skill | ||
level. Head over to the{' '} | ||
<a | ||
className="text-teal underline" | ||
href="https://github.com/slidr-app/slidr" | ||
> | ||
Slidr GitHub repository | ||
</a>{' '} | ||
to learn more! | ||
</div> | ||
<div className="col-span-full text-4xl font-bold text-center mt-20"> | ||
Who's Behind Slidr? | ||
</div> | ||
<img | ||
className="col-span-full rounded-full overflow-hidden aspect-square justify-self-center max-w-90 border-teal border-3" | ||
src={cody} | ||
/> | ||
<div className="col-span-full"> | ||
Hi!{' '} | ||
<div className="i-fluent-emoji-flat-waving-hand-medium-light align-baseline h-1.25rem w-1.25rem" />{' '} | ||
I'm Cody. I started Slidr while speaking around the world. I | ||
love connecting with the audience when I'm speaking and I was | ||
sure there must be a better way. That's when I decided to | ||
create Slidr. You cab find out how to connect with me over at my | ||
website:{' '} | ||
<a | ||
className="text-teal underline" | ||
href="https://devrel.codyfactory.eu" | ||
> | ||
devrel.codyfactory.eu | ||
</a> | ||
. | ||
</div> | ||
</div> | ||
</div> | ||
</DefaultLayout> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters