phase 1-2 done

This commit is contained in:
Ali Taghavi
2026-04-24 03:42:34 +03:30
commit 95a546df11
83 changed files with 17168 additions and 0 deletions

19
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: {
default: "Ali Taghavi | علی تقوی",
template: "%s | Ali Taghavi",
},
description: "CEO @ NODE-Group · Builder · Strategist · Tehran, Iran",
metadataBase: new URL("https://biztaghavi.com"),
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return children;
}