File size: 509 Bytes
cb20bdc
0879a03
6ba7c23
f672bdc
 
 
 
 
 
 
cb20bdc
0527ba9
 
0879a03
 
 
 
 
cb20bdc
6ba7c23
0527ba9
6ba7c23
cb20bdc
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;