SurfSense/surfsense_web/app/page.tsx

16 lines
449 B
TypeScript
Raw Normal View History

2025-04-07 23:47:06 -07:00
"use client";
2025-07-27 10:05:37 -07:00
2025-04-07 23:47:06 -07:00
import { Footer } from "@/components/Footer";
2025-07-27 10:05:37 -07:00
import { ModernHeroWithGradients } from "@/components/ModernHeroWithGradients";
import { Navbar } from "@/components/Navbar";
2025-04-07 23:47:06 -07:00
export default function HomePage() {
2025-07-27 10:05:37 -07:00
return (
<main className="min-h-screen bg-gradient-to-b from-gray-50 to-gray-100 text-gray-900 dark:from-black dark:to-gray-900 dark:text-white">
<Navbar />
<ModernHeroWithGradients />
<Footer />
</main>
);
}