Skip to content

Commit

Permalink
Fix code formatting in layout.tsx file
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsanghaffar committed Dec 15, 2024
1 parent b316cc8 commit 2056700
Showing 1 changed file with 34 additions and 35 deletions.
69 changes: 34 additions & 35 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,58 +1,57 @@
import Header from '@/components/Header';
import '@/styles/globals.css';
import Footer from '@/components/Footer';
import { Toaster } from '@/components/ui/sonner';
import { Metadata } from 'next';
import { Analytics } from "@vercel/analytics/react"
import { SpeedInsights } from "@vercel/speed-insights/next"

import Header from "@/components/Header";
import "@/styles/globals.css";
import Footer from "@/components/Footer";
import { Toaster } from "@/components/ui/sonner";
import { Metadata } from "next";
import { Analytics } from "@vercel/analytics/react";
import { SpeedInsights } from "@vercel/speed-insights/next";

type Props = {
params: { id: string }
searchParams: { [key: string]: string | string[] | undefined }
}

params: { id: string };
searchParams: { [key: string]: string | string[] | undefined };
};

export const metadata: Metadata = {
title: 'در کسری از ثانیه، بایویی خیره‌کننده و جذاب بساز!',
description: 'اینجا می‌تونی با چند کلیک ساده، بایویی شخصی‌سازی شده و جذاب که نمایانگر واقعی شخصیت توه، بسازی.',
title: "در کسری از ثانیه، بایویی خیره‌کننده و جذاب بساز!",
description:
"اینجا می‌تونی با چند کلیک ساده، بایویی شخصی‌سازی شده و جذاب که نمایانگر واقعی شخصیت توه، بسازی.",
alternates: {
canonical: '/'
canonical: "/",
},
openGraph: {
title: 'در کسری از ثانیه، بایویی خیره‌کننده و جذاب بساز!',
description: 'اینجا می‌تونی با چند کلیک ساده، بایویی شخصی‌سازی شده و جذاب که نمایانگر واقعی شخصیت توه، بسازی.',
images: [{
url: 'https://bio.eindev.ir/screenshot.png',
width: '300',
height: '300',
alt: "با استفاده از جدیدترین فناوری هوش مصنوعی، ما به شما کمک می‌کنیم تا بایویی ایجاد کنید که همه را مجذوب خود کند."
}]
title: "در کسری از ثانیه، بایویی خیره‌کننده و جذاب بساز!",
description:
"اینجا می‌تونی با چند کلیک ساده، بایویی شخصی‌سازی شده و جذاب که نمایانگر واقعی شخصیت توه، بسازی.",
images: [
{
url: "https://bio.eindev.ir/screenshot.png",
width: "300",
height: "300",
alt: "با استفاده از جدیدترین فناوری هوش مصنوعی، ما به شما کمک می‌کنیم تا بایویی ایجاد کنید که همه را مجذوب خود کند.",
},
],
},
}

};

export default function RootLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="fa" dir="rtl">
<body className="min-h-screen flex flex-col">
<header>
<Header />
<Header />
</header>
<main className="flex flex-1">
{children}
</main>
<footer className='flex flex-col w-full bottom-0'>
<Footer />
<main className="flex flex-1">{children}</main>
<footer className="flex flex-col w-full bottom-0">
<Footer />
</footer>
<Toaster richColors />
<Analytics />
<SpeedInsights />
</body>
</body>
</html>
)
}
);
}

1 comment on commit 2056700

@vercel
Copy link

@vercel vercel bot commented on 2056700 Dec 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.