diff --git a/app/page.tsx b/app/page.tsx
index a1aac05..fa420ca 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,135 +1,349 @@
import Link from 'next/link';
import { auth } from '@/lib/auth';
+import { Navbar } from '@/components/navbar';
import { Button } from '@/components/ui/button';
import { Card, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
-import { Rocket, Users, Calendar, TrendingUp, ArrowRight } from 'lucide-react';
+import {
+ Rocket,
+ Users,
+ Calendar,
+ ArrowRight,
+ Sparkles,
+ Target,
+ Award,
+ BarChart3,
+ Globe,
+ Linkedin,
+ Instagram,
+} from 'lucide-react';
const Home = async () => {
const session = await auth();
return (
-
- {/* Navigation */}
-