Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a0412af7c0 | |||
| e23c12c091 | |||
| 259de5bb4e | |||
| 939ae2bf27 |
@@ -1,76 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Raleway } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const raleway = Raleway({
|
|
||||||
variable: "--font-raleway",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Koshalendra Foundation | NGO for Community Support & Food Distribution in Karimnagar",
|
title: "Koshalendra Foundation", description: "Serving Communities with Compassion - Ensuring no one sleeps hungry"};
|
||||||
description: "Koshalendra Foundation is a registered NGO in Karimnagar, Telangana dedicated to serving needy communities through food distribution, medical assistance, and rural outreach programs. Donate or volunteer today.",
|
|
||||||
keywords: "NGO Karimnagar, charity organization Telangana, donate food NGO, volunteer Telangana, help poor communities India, social welfare, food distribution, medical assistance, rural development",
|
|
||||||
metadataBase: new URL("https://koshalendra.org"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://koshalendra.org",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Koshalendra Foundation | Serving Communities with Compassion",
|
|
||||||
description: "Join us in ensuring no one sleeps hungry. Support food distribution, medical assistance, and rural development programs in Telangana.",
|
|
||||||
url: "https://koshalendra.org",
|
|
||||||
siteName: "Koshalendra Foundation",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/multiethnic-volunteers-charitable-event-handing-out-food-poor-needy-smiles-abound-as-voluntary-individuals-work-together-fight-hunger-provide-support-less-fortunate_482257-68825.jpg",
|
|
||||||
alt: "Koshalendra Foundation community service",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Koshalendra Foundation - NGO for Community Support",
|
|
||||||
description: "Serving communities with compassion through food distribution and medical assistance.",
|
|
||||||
images: [
|
|
||||||
"http://img.b2bpic.net/free-photo/multiethnic-volunteers-charitable-event-handing-out-food-poor-needy-smiles-abound-as-voluntary-individuals-work-together-fight-hunger-provide-support-less-fortunate_482257-68825.jpg",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1438,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ import {
|
|||||||
Stethoscope,
|
Stethoscope,
|
||||||
TreePine,
|
TreePine,
|
||||||
Leaf,
|
Leaf,
|
||||||
|
ArrowRight,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
|
|
||||||
export default function HomePage() {
|
export default function HomePage() {
|
||||||
@@ -91,6 +92,11 @@ export default function HomePage() {
|
|||||||
animationType="scale-rotate"
|
animationType="scale-rotate"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
buttons={[
|
||||||
|
{ text: "View Our Impact", href: "/programs" },
|
||||||
|
{ text: "Learn More", href: "/about" },
|
||||||
|
]}
|
||||||
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -104,10 +110,12 @@ export default function HomePage() {
|
|||||||
mediaItems: [
|
mediaItems: [
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/photo-focus-caucasian-man-serving-bread-chicken-baked-beans-poor-hungry-african-american-person-non-profit-food-drive-close-up-meal-box-from-hunger-relief-team-given-needy_482257-68821.jpg?_wi=1", imageAlt: "Food distribution program"},
|
"http://img.b2bpic.net/free-photo/photo-focus-caucasian-man-serving-bread-chicken-baked-beans-poor-hungry-african-american-person-non-profit-food-drive-close-up-meal-box-from-hunger-relief-team-given-needy_482257-68821.jpg?_wi=1", imageAlt: "Food distribution program"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=1", imageAlt: "Community welfare distribution"},
|
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=1", imageAlt: "Community welfare distribution"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -116,10 +124,12 @@ export default function HomePage() {
|
|||||||
mediaItems: [
|
mediaItems: [
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/african-american-doctor-senior-man-communicating-hospital-waiting-room-while-wearing-face-masks_637285-11252.jpg?_wi=1", imageAlt: "Medical assistance camp"},
|
"http://img.b2bpic.net/free-photo/african-american-doctor-senior-man-communicating-hospital-waiting-room-while-wearing-face-masks_637285-11252.jpg?_wi=1", imageAlt: "Medical assistance camp"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/indigenous-person-doing-daily-chores-showcasing-lifestyle_23-2149711074.jpg?_wi=1", imageAlt: "Rural health support"},
|
"http://img.b2bpic.net/free-photo/indigenous-person-doing-daily-chores-showcasing-lifestyle_23-2149711074.jpg?_wi=1", imageAlt: "Rural health support"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -128,10 +138,12 @@ export default function HomePage() {
|
|||||||
mediaItems: [
|
mediaItems: [
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/indigenous-person-doing-daily-chores-showcasing-lifestyle_23-2149711074.jpg?_wi=2", imageAlt: "Rural community outreach"},
|
"http://img.b2bpic.net/free-photo/indigenous-person-doing-daily-chores-showcasing-lifestyle_23-2149711074.jpg?_wi=2", imageAlt: "Rural community outreach"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=2", imageAlt: "Rural support programs"},
|
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=2", imageAlt: "Rural support programs"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -140,10 +152,12 @@ export default function HomePage() {
|
|||||||
mediaItems: [
|
mediaItems: [
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=3", imageAlt: "Community welfare"},
|
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=3", imageAlt: "Community welfare"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/photo-focus-caucasian-man-serving-bread-chicken-baked-beans-poor-hungry-african-american-person-non-profit-food-drive-close-up-meal-box-from-hunger-relief-team-given-needy_482257-68821.jpg?_wi=2", imageAlt: "Welfare distribution"},
|
"http://img.b2bpic.net/free-photo/photo-focus-caucasian-man-serving-bread-chicken-baked-beans-poor-hungry-african-american-person-non-profit-food-drive-close-up-meal-box-from-hunger-relief-team-given-needy_482257-68821.jpg?_wi=2", imageAlt: "Welfare distribution"
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -181,27 +195,32 @@ export default function HomePage() {
|
|||||||
id: "1", name: "Rajesh Kumar, Volunteer", date: "Date: January 2025", title: "Changed my perspective on community service", quote:
|
id: "1", name: "Rajesh Kumar, Volunteer", date: "Date: January 2025", title: "Changed my perspective on community service", quote:
|
||||||
"Volunteering with Koshalendra Foundation has been transformative. Seeing the direct impact of our food distribution programs in Karimnagar villages motivates me every week.", tag: "Volunteer", avatarSrc:
|
"Volunteering with Koshalendra Foundation has been transformative. Seeing the direct impact of our food distribution programs in Karimnagar villages motivates me every week.", tag: "Volunteer", avatarSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg", avatarAlt: "Rajesh Kumar", imageSrc:
|
"http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg", avatarAlt: "Rajesh Kumar", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/photo-focus-caucasian-man-serving-bread-chicken-baked-beans-poor-hungry-african-american-person-non-profit-food-drive-close-up-meal-box-from-hunger-relief-team-given-needy_482257-68821.jpg?_wi=3", imageAlt: "Volunteer at food distribution"},
|
"http://img.b2bpic.net/free-photo/photo-focus-caucasian-man-serving-bread-chicken-baked-beans-poor-hungry-african-american-person-non-profit-food-drive-close-up-meal-box-from-hunger-relief-team-given-needy_482257-68821.jpg?_wi=3", imageAlt: "Volunteer at food distribution"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Priya Sharma, Beneficiary", date: "Date: December 2024", title: "Our family feels supported and dignified", quote:
|
id: "2", name: "Priya Sharma, Beneficiary", date: "Date: December 2024", title: "Our family feels supported and dignified", quote:
|
||||||
"The foundation's medical assistance program helped my family during a critical time. Beyond the medical help, the compassion they showed was equally important.", tag: "Community Member", avatarSrc:
|
"The foundation's medical assistance program helped my family during a critical time. Beyond the medical help, the compassion they showed was equally important.", tag: "Community Member", avatarSrc:
|
||||||
"http://img.b2bpic.net/free-photo/young-attractive-african-american-man-cafe-fashion-shooting-paris_1321-3458.jpg", avatarAlt: "Priya Sharma", imageSrc:
|
"http://img.b2bpic.net/free-photo/young-attractive-african-american-man-cafe-fashion-shooting-paris_1321-3458.jpg", avatarAlt: "Priya Sharma", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/african-american-doctor-senior-man-communicating-hospital-waiting-room-while-wearing-face-masks_637285-11252.jpg?_wi=2", imageAlt: "Medical assistance"},
|
"http://img.b2bpic.net/free-photo/african-american-doctor-senior-man-communicating-hospital-waiting-room-while-wearing-face-masks_637285-11252.jpg?_wi=2", imageAlt: "Medical assistance"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Arjun Reddy, CSR Partner", date: "Date: January 2025", title: "Transparent and impactful NGO", quote:
|
id: "3", name: "Arjun Reddy, CSR Partner", date: "Date: January 2025", title: "Transparent and impactful NGO", quote:
|
||||||
"As a corporate partner, we appreciate Koshalendra's transparency and measurable impact. Their focus on rural communities aligns perfectly with our CSR goals.", tag: "Corporate Partner", avatarSrc:
|
"As a corporate partner, we appreciate Koshalendra's transparency and measurable impact. Their focus on rural communities aligns perfectly with our CSR goals.", tag: "Corporate Partner", avatarSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-smiley-people-working-together_23-2149181995.jpg", avatarAlt: "Arjun Reddy", imageSrc:
|
"http://img.b2bpic.net/free-photo/close-up-smiley-people-working-together_23-2149181995.jpg", avatarAlt: "Arjun Reddy", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/indigenous-person-doing-daily-chores-showcasing-lifestyle_23-2149711074.jpg?_wi=3", imageAlt: "Rural community outreach"},
|
"http://img.b2bpic.net/free-photo/indigenous-person-doing-daily-chores-showcasing-lifestyle_23-2149711074.jpg?_wi=3", imageAlt: "Rural community outreach"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "4", name: "Meera Singh, Community Leader", date: "Date: November 2024", title: "Bringing hope to our village", quote:
|
id: "4", name: "Meera Singh, Community Leader", date: "Date: November 2024", title: "Bringing hope to our village", quote:
|
||||||
"Koshalendra Foundation doesn't just provide aid; they work WITH communities. The respect and partnership they show makes all the difference in our village.", tag: "Community Leader", avatarSrc:
|
"Koshalendra Foundation doesn't just provide aid; they work WITH communities. The respect and partnership they show makes all the difference in our village.", tag: "Community Leader", avatarSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg", avatarAlt: "Meera Singh", imageSrc:
|
"http://img.b2bpic.net/free-photo/close-up-smiley-woman-therapy_23-2148928886.jpg", avatarAlt: "Meera Singh", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=4", imageAlt: "Community welfare"},
|
"http://img.b2bpic.net/free-photo/fighting-hunger-poverty-together_482257-84897.jpg?_wi=4", imageAlt: "Community welfare"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "5", name: "Vikram Patel, Individual Donor", date: "Date: December 2024", title: "Every rupee makes a real difference", quote:
|
id: "5", name: "Vikram Patel, Individual Donor", date: "Date: December 2024", title: "Every rupee makes a real difference", quote:
|
||||||
"The detailed impact reports show exactly where donations go. I've recommended Koshalendra to friends and family because of their integrity and commitment.", tag: "Supporter", avatarSrc:
|
"The detailed impact reports show exactly where donations go. I've recommended Koshalendra to friends and family because of their integrity and commitment.", tag: "Supporter", avatarSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-people-with-clothes_23-2149196128.jpg", avatarAlt: "Vikram Patel", imageSrc:
|
"http://img.b2bpic.net/free-photo/close-up-people-with-clothes_23-2149196128.jpg", avatarAlt: "Vikram Patel", imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/multiethnic-volunteers-charitable-event-handing-out-food-poor-needy-smiles-abound-as-voluntary-individuals-work-together-fight-hunger-provide-support-less-fortunate_482257-68825.jpg?_wi=3", imageAlt: "Community service"},
|
"http://img.b2bpic.net/free-photo/multiethnic-volunteers-charitable-event-handing-out-food-poor-needy-smiles-abound-as-voluntary-individuals-work-together-fight-hunger-provide-support-less-fortunate_482257-68825.jpg?_wi=3", imageAlt: "Community service"
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
description="Stories from volunteers, beneficiaries, and supporters who believe in our mission"
|
description="Stories from volunteers, beneficiaries, and supporters who believe in our mission"
|
||||||
tag="Testimonials"
|
tag="Testimonials"
|
||||||
@@ -272,4 +291,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user