Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-09 08:42:34 +00:00
2 changed files with 7 additions and 6 deletions

View File

@@ -6,7 +6,8 @@ import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "LDC Community Support", description: "Community-led charity creating safe homes and lasting opportunities"};
title: "LDC Community Support", description: "Community-led charity creating safe homes and lasting opportunities"
};
export default function RootLayout({
children,
@@ -1399,4 +1400,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -36,7 +36,7 @@ export default function LandingPage() {
{ name: "Stories", id: "testimonials" },
{ name: "Get Involved", id: "contact" }
]}
button={{ text: "Donate Now", href: "/donate" }}
button={{ text: "Donate Now", href: "#contact" }}
/>
</div>
@@ -49,7 +49,7 @@ export default function LandingPage() {
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Learn Our Mission", href: "about" },
{ text: "Donate Today", href: "/donate" }
{ text: "Donate Today", href: "#contact" }
]}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-family-ready-move-into-new-home_23-2149662446.jpg?_wi=1", imageAlt: "Safe and accessible affordable housing for families" },
@@ -238,7 +238,7 @@ export default function LandingPage() {
},
{
title: "Support", items: [
{ label: "Donate", href: "/donate" },
{ label: "Donate", href: "#contact" },
{ label: "Volunteer", href: "#contact" },
{ label: "Partner With Us", href: "#contact" },
{ label: "Contact", href: "#contact" }
@@ -267,4 +267,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}