From 3777929629c77bbf63dad9991124334b8e9d960e Mon Sep 17 00:00:00 2001 From: Diogo Matos Date: Wed, 27 Sep 2023 20:29:42 +0100 Subject: [PATCH] General Improvements (#16) --- app/layout.tsx | 39 +++++++++++++++++++++--- app/page.tsx | 4 +-- app/team/page.tsx | 6 ++-- components/Banners.tsx | 49 ++++++++++++++++-------------- components/CalendariumBenefits.tsx | 10 +++--- components/CeSIUMLogo.tsx | 40 ++++++++++++++++++++++++ components/DatePicker.tsx | 21 +++++++------ components/Footer.tsx | 32 +++++++++++++------ components/Hero.tsx | 9 +++--- components/LinkButton.tsx | 22 -------------- components/Navbar.tsx | 28 ++++++++--------- components/NewsAndEvents.tsx | 28 +++++++++-------- components/NewsComponent.tsx | 16 +++++----- components/SeiComponent.tsx | 34 ++++++++++++--------- components/{Teams.tsx => Team.tsx} | 2 +- data/LinkGroup.json | 10 +++--- data/NewsData.json | 8 ++--- public/cesium-dark.svg | 42 +++++++++++++++++++++++++ {app => styles}/globals.css | 2 ++ tailwind.config.js | 18 +---------- 20 files changed, 261 insertions(+), 159 deletions(-) create mode 100644 components/CeSIUMLogo.tsx delete mode 100644 components/LinkButton.tsx rename components/{Teams.tsx => Team.tsx} (93%) create mode 100644 public/cesium-dark.svg rename {app => styles}/globals.css (83%) diff --git a/app/layout.tsx b/app/layout.tsx index b8e86ce..14b7ff2 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,4 @@ -import "./globals.css"; +import "/styles/globals.css"; import { Inter, Orbitron } from "@next/font/google"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; @@ -19,9 +19,40 @@ export default function RootLayout({ return ( - - {children} -