diff --git a/app/globals.css b/app/globals.css index 875c01e..7f46709 100644 --- a/app/globals.css +++ b/app/globals.css @@ -2,32 +2,16 @@ @tailwind components; @tailwind utilities; -:root { - --foreground-rgb: 0, 0, 0; - --background-start-rgb: 214, 219, 220; - --background-end-rgb: 255, 255, 255; -} - -@media (prefers-color-scheme: dark) { - :root { - --foreground-rgb: 255, 255, 255; - --background-start-rgb: 0, 0, 0; - --background-end-rgb: 0, 0, 0; - } -} - body { - color: rgb(var(--foreground-rgb)); - background: linear-gradient( - to bottom, - transparent, - rgb(var(--background-end-rgb)) - ) - rgb(var(--background-start-rgb)); + background-color: #141718; + font-family: sans-serif; + font-weight: 500; } -@layer utilities { - .text-balance { - text-wrap: balance; - } -} +.inter-heading { + font-family: "Inter", sans-serif; + font-optical-sizing: auto; + font-weight: 500; + font-style: normal; + font-variation-settings: "slnt" 0; +} \ No newline at end of file diff --git a/app/page.tsx b/app/page.tsx index ab41e43..c80d577 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,35 +1,19 @@ -export default function Home() { +import Navbar from '@/components/Navbar'; +import Hero from '@/components/Hero'; +import Initiatives from '@/components/Initiatives'; +import Structure from '@/components/Structure'; +import Footer from '@/components/Footer'; + +const Home: React.FC = () => { return ( -
-
-
-

- Under Construction. - FOSSCU-K -

-

- Free and Open Source Software Community University -

-
- - Join Us - - - Learn More - -
-
-
-
+ <> + + + + +