-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathlayout.tsx
More file actions
53 lines (49 loc) · 1.39 KB
/
layout.tsx
File metadata and controls
53 lines (49 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import type { Metadata } from "next";
import { Instrument_Serif, Manrope } from "next/font/google";
import "./globals.css";
import { Appbar } from "@/components/Appbar";
import { Providers } from "@/components/providers/Providers";
import Footer from "@/components/landing/footer";
const manrope = Manrope({
subsets: ["latin"],
variable: "--font-manrope",
weight: ["300", "400", "500", "600", "700"],
});
const instrumental_serif = Instrument_Serif({
subsets: ["latin"],
variable: "--font-instrumental-serif",
weight: ["400"],
});
export const metadata: Metadata = {
title: "100xPhoto - AI-Powered Photo Enhancement",
description:
"Transform your photos with AI-powered enhancement and editing tools.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<script
src="https://checkout.razorpay.com/v1/checkout.js"
async
defer
/>
</head>
<body
className={`${manrope.variable} ${instrumental_serif.variable} min-h-screen bg-background font-sans antialiased`}
>
<Providers>
<div className="relative flex min-h-screen flex-col">
<Appbar />
<main className="flex-1">{children}</main>
<Footer />
</div>
</Providers>
</body>
</html>
);
}