diff --git a/app/globals.css b/app/globals.css index a2dc41e..2589c6b 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,26 +1,13 @@ @import "tailwindcss"; +/* Global default font = Lato */ :root { - --background: #ffffff; - --foreground: #171717; + font-family: var(--font-lato), sans-serif; } -@theme inline { - --color-background: var(--background); - --color-foreground: var(--foreground); - --font-sans: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - -body { - background: var(--background); - color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; +/* Tailwind theme overrides */ +@theme { + --font-sans: var(--font-lato), sans-serif; + --font-lato: var(--font-lato), sans-serif; + --font-inter: var(--font-inter), sans-serif; } diff --git a/app/layout.tsx b/app/layout.tsx index f7fa87e..ed6517a 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,32 +1,31 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Lato, Inter } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", +const lato = Lato({ + weight: ["300", "400", "700", "900"], subsets: ["latin"], + variable: "--font-lato", }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", +const inter = Inter({ subsets: ["latin"], + variable: "--font-inter", }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Da Next Agency", + description: "Created by Omukk", }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - + {children} diff --git a/app/page.tsx b/app/page.tsx index 295f8fd..48afd12 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,65 +1,119 @@ -import Image from "next/image"; - export default function Home() { return ( -
-
- Next.js logo -
-

- To get started, edit the page.tsx file. +
+
+
+
+
+
+
+
+
+
+
+

+ Da Next

-

- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -

-
-

-
-
+ +
+
+

+ Shaping Narratives. +

+

+ Building Leaders. +

+

+ Winning Campaigns. +

+
+
+
+
+
+
+
+
+ + + {/* corner borders OUTSIDE the clipped button */} + + + + +
+
+
+
+
+
+
+
+
+
+

500+

+
+ CAMPAIGNS +
+
+
+
+
+
+
+
+
+
+

98%+

+
+ SUCCESS RATE +
+
+
+
+
+
+
+
+
+
+

15+

+
+ YEARS +
+
+
+
+ ); } diff --git a/public/file.svg b/public/file.svg deleted file mode 100644 index 004145c..0000000 --- a/public/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/globe.svg b/public/globe.svg deleted file mode 100644 index 567f17b..0000000 --- a/public/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index 7705396..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/window.svg b/public/window.svg deleted file mode 100644 index b2b2a44..0000000 --- a/public/window.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file