diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 86d9af9..61aa659 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-