diff --git a/README.md b/README.md index 2bfd267..5fb8b88 100644 --- a/README.md +++ b/README.md @@ -6,20 +6,22 @@ Built using Next.js and Tailwind CSS. 1. Clone the repository: -``` +```bash git clone https://github.com/aftabrehan/zin-tools.git +# or +gh repo clone aftabrehan/zin-tools ``` 2. Install the required dependencies: ```bash -npm +npm install # or -yarn +yarn install # or -pnpm +pnpm install # or -bun +bun install ``` 3. Run the development server: @@ -36,7 +38,5 @@ bun dev Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - > [!NOTE] > This project is created solely for test/portfolio purposes, and you are free to use it as you see fit. diff --git a/app/layout.tsx b/app/layout.tsx index 2fbdde6..2d4fe34 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,9 @@ -import type { Metadata } from 'next' import { Inter } from 'next/font/google' +import type { Metadata } from 'next' + +import { Header } from '@/components/header' +import { Footer } from '@/components/footer' + import './globals.css' const inter = Inter({ subsets: ['latin'] }) @@ -16,7 +20,17 @@ export default function RootLayout({ }>) { return ( - {children} + +
+
+
{children}
+
+