-
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
8 changed files
with
79 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
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 |
---|---|---|
@@ -1,7 +1,44 @@ | ||
import Box from "@/components/common/Box/Box"; | ||
import Image from "next/image"; | ||
import Laptop from "@/assets/home/laptop.jpg"; | ||
import { FaArrowRight } from "react-icons/fa6"; | ||
|
||
export default function Home() { | ||
return ( | ||
<main className="flex min-h-max w-max bg-close2White"> | ||
<div className="text-red-400">Witamy w Konferno</div> | ||
<main className="flex min-h-max min-w-screen bg-black2darkblue-gradient justify-center items-center mt-navbar"> | ||
<Box> | ||
<div className="grid grid-cols-2 w-full h-full"> | ||
<div className="pr-8"> | ||
<h1 className="text-4xl font-bold mb-6">Witamy w Konferno</h1> | ||
<p className="text-xl mb-8"> | ||
Najlepszej stronie do organizacji konferencji | ||
</p> | ||
<p className="text-xl mb-8"> | ||
Zapewniamy niezawodne planowanie konferencji, rejestrację | ||
uczestników , zarządzanie harmonogramem sesji i prezentacji oraz | ||
publikację materiałów konferencyjnych | ||
</p> | ||
<p className="text-xl mb-8"> | ||
Rozsiądz się wygodnie i zostaw wszystko nam... | ||
</p> | ||
<div className="flex items-center justify-center w-full"> | ||
<button className="bg-close2White text-blue text-lg font-medium py-3 px-6 rounded-2xl flex items-center justify-center"> | ||
<a href="/login">Dołącz do nas</a> | ||
<div className="ml-6 w-9 h-9 rounded-full bg-blue flex items-center justify-center"> | ||
<FaArrowRight className="text-close2White" /> | ||
</div> | ||
</button> | ||
</div> | ||
</div> | ||
<div className="w-full h-full flex items-center"> | ||
<Image | ||
src={Laptop} | ||
alt="LaptopImage" | ||
className="h-[384px] w-[640px] rounded-3xl" | ||
/> | ||
</div> | ||
</div> | ||
</Box> | ||
</main> | ||
); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function Box({ children }: { children: React.ReactNode }) { | ||
return ( | ||
<main className="items-start h-auto w-[70%] bg-darkblue2blue-gradient z-0 rounded-3xl px-8 py-8 text-close2White"> | ||
{children} | ||
</main> | ||
); | ||
} |
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,3 +1,7 @@ | ||
export default function Page({ children }: { children: React.ReactNode }) { | ||
return <main className="flex min-h-max bg-yellow-300 z-0">{children}</main>; | ||
return ( | ||
<main className="flex min-h-max bg-yellow-300 z-0 item-center"> | ||
{children} | ||
</main> | ||
); | ||
} |
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