diff --git a/package-lock.json b/package-lock.json index c8ab6422..abea944f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "website-2023", + "name": "enei-website", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/public/fonts/SpaceGrotesk-Bold.ttf b/public/fonts/SpaceGrotesk-Bold.ttf new file mode 100644 index 00000000..0408641c Binary files /dev/null and b/public/fonts/SpaceGrotesk-Bold.ttf differ diff --git a/public/fonts/SpaceGrotesk-Light.ttf b/public/fonts/SpaceGrotesk-Light.ttf new file mode 100644 index 00000000..d41bcccd Binary files /dev/null and b/public/fonts/SpaceGrotesk-Light.ttf differ diff --git a/public/fonts/SpaceGrotesk-Medium.ttf b/public/fonts/SpaceGrotesk-Medium.ttf new file mode 100644 index 00000000..7d44b663 Binary files /dev/null and b/public/fonts/SpaceGrotesk-Medium.ttf differ diff --git a/public/fonts/SpaceGrotesk-Regular.ttf b/public/fonts/SpaceGrotesk-Regular.ttf new file mode 100644 index 00000000..981bcf5b Binary files /dev/null and b/public/fonts/SpaceGrotesk-Regular.ttf differ diff --git a/public/fonts/SpaceGrotesk-SemiBold.ttf b/public/fonts/SpaceGrotesk-SemiBold.ttf new file mode 100644 index 00000000..e7e02e51 Binary files /dev/null and b/public/fonts/SpaceGrotesk-SemiBold.ttf differ diff --git a/public/images/enei-logo.png b/public/images/enei-logo.png new file mode 100644 index 00000000..7bef03a0 Binary files /dev/null and b/public/images/enei-logo.png differ diff --git a/public/images/landing-page-background.png b/public/images/landing-page-background.png new file mode 100644 index 00000000..b6686509 Binary files /dev/null and b/public/images/landing-page-background.png differ diff --git a/resources/css/app.css b/resources/css/app.css index 0de21207..a9a1ec76 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -2,6 +2,25 @@ @tailwind components; @tailwind utilities; +@layer base { + @font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url('/fonts/SpaceGrotesk-Regular.ttf') format('truetype'); + } + + @font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url('/fonts/SpaceGrotesk-Bold.ttf') format('truetype'); + } +} + +/* Custom utility for hiding elements */ [x-cloak] { display: none; } diff --git a/resources/js/Components/Navbar.vue b/resources/js/Components/Navbar.vue index 46c73140..de427831 100644 --- a/resources/js/Components/Navbar.vue +++ b/resources/js/Components/Navbar.vue @@ -19,17 +19,17 @@ interface Route { type Routes = Record; const homeSections: Routes = { - aboutus: { + /*aboutus: { label: "Sobre nós", }, speakers: { label: "Oradores" }, - sponsors: { label: "Patrocínios" }, + sponsors: { label: "Patrocínios" },*/ }; const pageRoutes: Routes = { - program: { label: "Programa" }, + /*program: { label: "Programa" }, "shop.show": { label: "Loja" }, - team: { label: "Equipa" }, + team: { label: "Equipa" },*/ }; const editionRoutes = [2022, 2021, 2020, 2019, 2018]; @@ -46,14 +46,14 @@ const isAdmin = checkIsAdmin(props.auth.user);