diff --git a/app/page.tsx b/app/page.tsx index e8778b7..b99dfe5 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,9 @@ +import Hero from "@/components/Hero"; + export default function Home() { - return
; + return ( +
+ +
+ ); } diff --git a/components/Hero.tsx b/components/Hero.tsx new file mode 100644 index 0000000..854e84a --- /dev/null +++ b/components/Hero.tsx @@ -0,0 +1,26 @@ +import Image from "next/image"; +import logo from "@/public/cesium.svg"; + +export default function Hero() { + return ( +
+
+
CeSIUM
+
+ Centro de Estudante de Engenharia Informática da Universidade do Minho +
+
+
+ + +
+
+ ); +} diff --git a/components/Navbar.tsx b/components/Navbar.tsx index 0d37fdd..312593f 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -1,14 +1,14 @@ import Image from "next/image"; -import logo from "@/public/cesium.png"; +import logo from "@/public/cesium-lettering.png"; import Link from "next/link"; const navbar: string[] = ["HOME", "TEAM", "LOGS", "EVENTS", "ABOUT US"]; export default function Navbar() { return ( -
- +
+
{navbar.map((title) => ( cesium \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index 45fb258..ed75534 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -18,7 +18,7 @@ module.exports = { "5xl": ["3rem", { lineHeight: "3.5rem" }], "6xl": ["4rem", { lineHeight: "1" }], "7xl": ["5rem", { lineHeight: "1" }], - "8xl": ["6rem", { lineHeight: "1" }], + "8xl": ["7rem", { lineHeight: "1" }], "9xl": ["8rem", { lineHeight: "1" }], }, extend: { @@ -40,6 +40,7 @@ module.exports = { 800: "#ED8661", 900: "#ED8661", }, + background: "EDE9E8", }, }, },