4 Commits

Author SHA1 Message Date
3493e13aa4 Update src/app/styles/base.css 2026-04-22 17:07:34 +00:00
56c861ef31 Update src/app/page.tsx 2026-04-22 17:07:34 +00:00
e2ad9d056d Update src/app/layout.tsx 2026-04-22 17:07:33 +00:00
468d308d07 Merge version_3 into main
Merge version_3 into main
2026-04-22 17:03:34 +00:00
3 changed files with 15 additions and 3 deletions

View File

@@ -28,10 +28,14 @@ export const metadata: Metadata = {
const merriweather = Merriweather({ const merriweather = Merriweather({
variable: "--font-merriweather", subsets: ["latin"], variable: "--font-merriweather", subsets: ["latin"],
weight: ["300", "400", "700", "900"], weight: ["300", "400", "700", "900"],
}); });
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -41,7 +45,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${merriweather.variable} antialiased`}> <body className={`${merriweather.variable} ${montserrat.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -81,6 +81,7 @@ export default function LandingPage() {
src: "http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-15117.jpg", alt: "Group of happy and diverse volunteers"}, src: "http://img.b2bpic.net/free-photo/group-happy-diverse-volunteers_53876-15117.jpg", alt: "Group of happy and diverse volunteers"},
]} ]}
avatarText="Join 50,000+ donors today" avatarText="Join 50,000+ donors today"
descriptionClassName="font-montserrat"
/> />
</div> </div>
@@ -102,6 +103,7 @@ export default function LandingPage() {
]} ]}
title="Our Collective Impact" title="Our Collective Impact"
description="Measurable results driven by community partnership." description="Measurable results driven by community partnership."
textBoxDescriptionClassName="font-montserrat"
/> />
</div> </div>
@@ -112,6 +114,7 @@ export default function LandingPage() {
description="We don't just provide relief; we equip communities with the resources, education, and health support they need to break the cycle of poverty permanently. Our approach is centered on local leadership and lasting change." description="We don't just provide relief; we equip communities with the resources, education, and health support they need to break the cycle of poverty permanently. Our approach is centered on local leadership and lasting change."
imageSrc="http://img.b2bpic.net/free-photo/group-different-people-volunteering-foodbank_23-2149012216.jpg?_wi=2" imageSrc="http://img.b2bpic.net/free-photo/group-different-people-volunteering-foodbank_23-2149012216.jpg?_wi=2"
imageAlt="Development project site in action" imageAlt="Development project site in action"
descriptionClassName="font-montserrat"
/> />
</div> </div>
@@ -129,6 +132,7 @@ export default function LandingPage() {
]} ]}
title="Focus Areas" title="Focus Areas"
description="Tackling root causes of poverty through targeted intervention programs." description="Tackling root causes of poverty through targeted intervention programs."
textBoxDescriptionClassName="font-montserrat"
/> />
</div> </div>
@@ -157,6 +161,7 @@ export default function LandingPage() {
showRating={true} showRating={true}
title="Voices of Change" title="Voices of Change"
description="Stories from the communities we empower together." description="Stories from the communities we empower together."
textBoxDescriptionClassName="font-montserrat"
/> />
</div> </div>
@@ -168,6 +173,7 @@ export default function LandingPage() {
"United Nations", "World Health Organization", "Global Relief Fund", "International Aid Alliance", "Children's Future Trust", "Education First Global", "Humanitarian Action Group"]} "United Nations", "World Health Organization", "Global Relief Fund", "International Aid Alliance", "Children's Future Trust", "Education First Global", "Humanitarian Action Group"]}
title="Global Partnerships" title="Global Partnerships"
description="Proudly working alongside these global organizations for a better world." description="Proudly working alongside these global organizations for a better world."
textBoxDescriptionClassName="font-montserrat"
/> />
</div> </div>
@@ -186,6 +192,7 @@ export default function LandingPage() {
title="Common Questions" title="Common Questions"
description="Learn more about our operations and how donations are utilized." description="Learn more about our operations and how donations are utilized."
faqsAnimation="slide-up" faqsAnimation="slide-up"
textBoxDescriptionClassName="font-montserrat"
/> />
</div> </div>
@@ -199,6 +206,7 @@ export default function LandingPage() {
description="Sign up for our newsletter to receive monthly stories, impact reports, and ways you can help." description="Sign up for our newsletter to receive monthly stories, impact reports, and ways you can help."
imageSrc="http://img.b2bpic.net/free-photo/group-volunteers-taking-care-donations-together_23-2148687299.jpg" imageSrc="http://img.b2bpic.net/free-photo/group-volunteers-taking-care-donations-together_23-2148687299.jpg"
mediaAnimation="slide-up" mediaAnimation="slide-up"
descriptionClassName="font-montserrat"
/> />
</div> </div>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-merriweather), sans-serif; font-family: var(--font-merriweather), serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-merriweather), sans-serif; font-family: var(--font-merriweather), serif;
} }