Update src/app/layout.tsx

This commit is contained in:
2026-03-07 10:00:45 +00:00
parent b58d794c9a
commit 0734afa010

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Pixelshed - Free Stock Photos for Creators",
description: "Discover millions of free stock photos from talented photographers. Download high-resolution images for your projects with easy-to-use search and color filtering.",
keywords: "stock photos, free images, photography, royalty-free, creators, designers, download photos",
metadataBase: new URL("https://pixelshed.com"),
alternates: {
canonical: "https://pixelshed.com"
},
openGraph: {
title: "Pixelshed - Free Stock Photos for Creators",
description: "Discover millions of free stock photos from talented photographers. Download high-resolution images for your projects.",
url: "https://pixelshed.com",
siteName: "Pixelshed",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbpKsAQL6qUqcl3ofmKSCepFrJ/a-stunning-landscape-photography-shot-sh-1772871142858-3de148a2.png",
alt: "Pixelshed - Free Stock Photography Platform"
}
]
},
twitter: {
card: "summary_large_image",
title: "Pixelshed - Free Stock Photos",
description: "Discover and download millions of free stock photos from talented photographers.",
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbpKsAQL6qUqcl3ofmKSCepFrJ/a-stunning-landscape-photography-shot-sh-1772871142858-3de148a2.png"]
},
robots: {
index: true,
follow: true
}
};
title: "Pixelshed - Free Stock Photos", description: "Discover millions of free stock photos from our community of talented photographers. Find the perfect image for your project."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}