Initial Commit

This commit is contained in:
aftabrehan
2024-02-01 12:01:04 +05:00
parent 3f6040c919
commit 9ac97c7f9a
12 changed files with 81 additions and 168 deletions

View File

@@ -1,22 +1,22 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
const inter = Inter({ subsets: ["latin"] });
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
title: 'ZinTools',
description: 'ZinTools Web app by Aftab Rehan',
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
)
}