Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions data/activities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ export const activities: Activity[] = [
title: 'Organic Farming',
description:
'Our campus utilizes natural farming techniques to produce healthy, chemical-free food while regenerating the soil. We practice crop rotation, composting, and water conservation.',
imageUrl: 'https://picsum.photos/seed/farming/800/600',
imageUrl: '/images/bloody.jpg',
},
{
id: 'school',
title: 'Residential School',
description:
'Providing values-based education that integrates academic learning with practical life skills. Our students learn through doing and are encouraged to explore their innate potential.',
imageUrl: 'https://picsum.photos/seed/school/800/600',
imageUrl: '/images/resi.jpg',
},
{
id: 'skills',
title: 'Skill Development',
description:
'Empowering local communities through vocational training in carpentry, pottery, weaving, and renewable energy technologies. Promoting self-reliance and sustainable livelihoods.',
imageUrl: 'https://picsum.photos/seed/skills/800/600',
imageUrl: '/images/skill1.jpg',
},
];
6 changes: 3 additions & 3 deletions pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const Home: FC = () => {
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
<div className="relative group overflow-hidden rounded-xl aspect-[4/3]">
<img
src="https://picsum.photos/seed/farm/600/400"
src="/images/organic.jpg"
alt="Farming"
className="object-cover w-full h-full transition-transform duration-500 group-hover:scale-110"
/>
Expand All @@ -76,7 +76,7 @@ const Home: FC = () => {
</div>
<div className="relative group overflow-hidden rounded-xl aspect-[4/3]">
<img
src="https://picsum.photos/seed/kids/600/400"
src="/images/edu.jpg"
alt="Education"
className="object-cover w-full h-full transition-transform duration-500 group-hover:scale-110"
/>
Expand All @@ -86,7 +86,7 @@ const Home: FC = () => {
</div>
<div className="relative group overflow-hidden rounded-xl aspect-[4/3]">
<img
src="https://picsum.photos/seed/pottery/600/400"
src="/images/skill.jpg"
alt="Skills"
className="object-cover w-full h-full transition-transform duration-500 group-hover:scale-110"
/>
Expand Down
Binary file added public/images/bloody.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/edu.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/organic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/resi.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/skill.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/skill1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.