diff --git a/src/app/donate/page.tsx b/src/app/donate/page.tsx new file mode 100644 index 0000000..3c0892a --- /dev/null +++ b/src/app/donate/page.tsx @@ -0,0 +1,96 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Heart } from 'lucide-react'; + +export default function DonatePage() { + return ( + + + + + + + + ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f1ab2d5..e85e9f9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,35 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "LDC | Community-Led Support for Vulnerable Families", description: "Community-led charity providing safe homes, education, health support, and employment pathways for vulnerable families and individuals. From crisis to stability to lasting independence.", keywords: "charity, vulnerable families, affordable housing, education, employment, wellbeing, community support, inclusive, safety, dignity", metadataBase: new URL("https://ldc-charity.org"), - alternates: { - canonical: "https://ldc-charity.org"}, - openGraph: { - title: "LDC Community-Led Charity | Safe Homes, Stronger Futures", description: "Supporting vulnerable families through comprehensive housing, education, health, and wellbeing services. Building a community where everyone can thrive.", type: "website", siteName: "LDC Community Support", images: [ - { - url: "http://img.b2bpic.net/free-photo/full-shot-family-ready-move-into-new-home_23-2149662446.jpg", alt: "Safe and accessible affordable housing for families"}, - ], - }, - twitter: { - card: "summary_large_image", title: "LDC | Community Support for Vulnerable Families", description: "From crisis to stability, opportunity to independence. Holistic support for sustainable change.", images: ["http://img.b2bpic.net/free-photo/full-shot-family-ready-move-into-new-home_23-2149662446.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "LDC Community Support", description: "Community-led charity creating safe homes and lasting opportunities"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +