import HeroSection from "@/components/HeroSection"; | |
import "./index.css"; | |
export const metadata = { | |
title: "Home", | |
icons: { | |
icon: '/favicon.ico"', | |
}, | |
}; | |
const HomePage = () => { | |
return ( | |
<> | |
<div className="index-page"> | |
<div className="index-page-container"> | |
<HeroSection /> | |
<h2 className="section-title">Popular TV Shows</h2> | |
<h2 className="section-title">Trending Movies</h2> | |
</div> | |
</div> | |
</> | |
); | |
}; | |
export default HomePage; | |