-
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.
* Hero * Put navbar on layout * Fix minor error
- Loading branch information
Showing
6 changed files
with
39 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
import Hero from "@/components/Hero"; | ||
|
||
export default function Home() { | ||
return <main className=""></main>; | ||
return ( | ||
<main className="bg-background px-20"> | ||
<Hero /> | ||
</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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import Image from "next/image"; | ||
import logo from "@/public/cesium.svg"; | ||
|
||
export default function Hero() { | ||
return ( | ||
<div className="mt-32 flex items-center justify-center gap-36"> | ||
<div className="w-[530px] flex-col items-center justify-center"> | ||
<div className="mb-6 text-8xl font-semibold">CeSIUM</div> | ||
<div className="text-2xl font-semibold"> | ||
Centro de Estudante de Engenharia Informática da Universidade do Minho | ||
</div> | ||
</div> | ||
<div className="relative"> | ||
<Image src={logo} alt="" width={300} height={343} priority /> | ||
<Image | ||
className="absolute left-1/2 top-1/2 h-full w-full -translate-x-1/2 -translate-y-1/2 scale-150 transform rounded-lg object-cover opacity-40 blur-3xl filter" | ||
src={logo} | ||
alt="" | ||
width={300} | ||
height={343} | ||
priority | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} |
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
File renamed without changes
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