diff --git a/app/globals.css b/app/globals.css index c8661f4..3015fe2 100644 --- a/app/globals.css +++ b/app/globals.css @@ -141,7 +141,7 @@ body { background: url("../public/pattern.svg"), linear-gradient(rgba(58, 58, 58, 1) 0%, rgba(10, 10, 10, 1) 15%); background-blend-mode: color-burn; - background-size: 20%; + background-size: 22%; } .bg-parch { diff --git a/app/layout.tsx b/app/layout.tsx index f812fdb..0734c66 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,6 +3,7 @@ import Header from "@/components/header"; import type { Metadata } from "next"; import localFont from "next/font/local"; import "./globals.css"; +import { ThemeProvider } from "@/components/theme-provider"; const Vazir = localFont({ src: [ @@ -33,9 +34,16 @@ export default function RootLayout({ className={`${Vazir.className} antialiased`} suppressHydrationWarning > -
- {children} - + +
+ {children} + + ); diff --git a/bun.lockb b/bun.lockb index 1d2c749..ce5ccf3 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/components/about-podcast.tsx b/components/about-podcast.tsx index d668c49..4ccd9ab 100644 --- a/components/about-podcast.tsx +++ b/components/about-podcast.tsx @@ -2,7 +2,7 @@ import Image from "next/image"; export function AboutPodcast() { return ( -
+
diff --git a/components/episode-cards.tsx b/components/episode-cards.tsx index 8640f94..5c6591d 100644 --- a/components/episode-cards.tsx +++ b/components/episode-cards.tsx @@ -44,9 +44,7 @@ export function EpisodeCards({ section }: { section: "podcast" | "main" }) { return (
diff --git a/components/footer-section.tsx b/components/footer-section.tsx index a8bdd06..d9c79fb 100644 --- a/components/footer-section.tsx +++ b/components/footer-section.tsx @@ -1,10 +1,11 @@ import { Github, Instagram, Twitter, Youtube } from "lucide-react"; import Image from "next/image"; import { Footer, FooterBottom, FooterColumn, FooterContent } from "./ui/footer"; +import Link from "next/link"; export default function FooterSection() { return ( -