diff --git a/app/(www)/page.tsx b/app/(www)/page.tsx index 5f178f9..fc4ed0c 100644 --- a/app/(www)/page.tsx +++ b/app/(www)/page.tsx @@ -19,7 +19,7 @@ export default async function IndexPage() { <>
-

+

Hi, I'm Olabode 👋🏽

@@ -44,10 +44,10 @@ export default async function IndexPage() {

-

+

Olabode
-

+

Tools & Libraries

@@ -100,13 +100,13 @@ export default async function IndexPage() {

-

+

Projects

I like to engineer solutions that make a difference. Whether it's crafting problem-solving applications for businesses, creating tools that streamline my workflow or just hacking around with some ideas, innovation drives me. Here's a curated project collection, ranging from empowering business solutions to personal hacks that have either aided my learning or transformed my productivity:

-
+
{projects.map((p, i) => ( ))} diff --git a/app/layout.tsx b/app/layout.tsx index f4a50c7..ea987b0 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,10 +1,19 @@ import "@/styles/globals.css"; import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Inter, Bricolage_Grotesque } from "next/font/google"; import { siteConfig } from "@/config/site"; import { ThemeProvider } from "@/components/theme-provider"; +import { cn } from "@/lib/utils"; -const inter = Inter({ subsets: ['latin'] }); +const fontSans = Inter({ + subsets: ['latin'], + variable: "--font-sans" +}); + +const fontHeading = Bricolage_Grotesque({ + subsets: ['latin'], + variable: "--font-heading" +}); export const metadata: Metadata = { title: { @@ -59,7 +68,7 @@ export default function RootLayout({ }) { return ( - + {children} diff --git a/components/project-card.tsx b/components/project-card.tsx index ce87f85..bba57c7 100644 --- a/components/project-card.tsx +++ b/components/project-card.tsx @@ -27,7 +27,7 @@ interface ProjectCardProps { export function ProjectCard({ title, desc, image, category, url, linkText }: ProjectCardProps) { return ( - +