first commit

This commit is contained in:
gotolombok
2026-01-31 17:21:32 +08:00
commit f839fbd63a
109 changed files with 19204 additions and 0 deletions

26
app/layout.tsx Normal file
View File

@@ -0,0 +1,26 @@
import type { Metadata } from 'next';
import './globals.css';
import Navbar from '@/components/Navbar';
import BottomNav from '@/components/BottomNav';
export const metadata: Metadata = {
title: 'Cineprime - Watch Movies & Series',
description: 'Unlimited movies, TV shows, and more.',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark overflow-x-hidden">
<body className="antialiased bg-[#141414] text-white pb-16">
<Navbar />
{children}
<BottomNav />
</body>
</html>
);
}