web / frontend /src /pages /Index.tsx
Chandima Prabhath
Track bun.lockb with Git LFS
cc2caf9
raw
history blame
342 Bytes
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';
import HomePage from './HomePage';
const Index = () => {
return (
<div className="min-h-screen bg-netflix-black text-white">
<Navbar />
<main>
<HomePage />
</main>
<Footer />
</div>
);
};
export default Index;