-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from isaacdemeers/Getting-Started
Getting started
- Loading branch information
Showing
11 changed files
with
172 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"dependencies": { | ||
"framer-motion": "^11.13.5", | ||
"gsap": "^3.12.5" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,38 @@ | ||
"use client" | ||
|
||
import Image from "next/image" | ||
import Background from "@images/bg.svg" | ||
import { useEffect } from "react"; | ||
import { Button } from "@/components/ui/button"; | ||
import Link from "next/link"; | ||
|
||
export default function Page() { | ||
|
||
const steps = [ | ||
{ title: "Créer un événement", description: "Créez un événement pour commencer à planifier vos événements." }, | ||
{ title: "Inviter des amis", description: "Invitez vos amis à l'événement pour les encourager à venir." }, | ||
{ title: "Suivre l'avancée", description: "Suivez l'avancée de l'événement et les invitations envoyées." }, | ||
] | ||
|
||
|
||
return ( | ||
<div> | ||
<p>PlanIt est un calendrier partagé pour planifier vos événements.</p> | ||
</div> | ||
<section className="w-screen h-screen flex items-center justify-center relative"> | ||
<Image src={Background} alt="Background" className="absolute top-0 left-0 w-full h-full" /> | ||
<div className="w-screen h-screen bg-slate-100 bg-opacity-65 backdrop-blur-3xl flex items-center justify-center"> | ||
<div className="flex items-center justify-center bg-white bg-opacity-20 backdrop-blur-3xl w-1/2 h-1/2 rounded-3xl shadow-2xl"> | ||
<ul> | ||
{steps.map((step, index) => ( | ||
<li key={index}> | ||
<Button> | ||
{step.title} | ||
</Button> | ||
</li> | ||
))} | ||
</ul> | ||
|
||
</div> | ||
</div> | ||
</section> | ||
); | ||
} | ||
} | ||
|
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.
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.
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