chore: init commit

feat(page): add hero page
This commit is contained in:
shafin-r
2025-12-03 19:40:35 +06:00
parent e0aeb5252d
commit d47a7c5311
8 changed files with 130 additions and 95 deletions

View File

@ -1,32 +1,31 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Lato, Inter } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
const lato = Lato({
weight: ["300", "400", "700", "900"],
subsets: ["latin"],
variable: "--font-lato",
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Da Next Agency",
description: "Created by Omukk",
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<body className={`${lato.variable} ${inter.variable} antialiased`}>
{children}
</body>
</html>