Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f6bc5290e9 | |||
| 85ceae25b6 | |||
| 0734afa010 | |||
| b58d794c9a | |||
| 3deadd580f | |||
| 055e74a31a |
@@ -1,74 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Mulish } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Pixelshed - Free Stock Photos for Creators",
|
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."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1436,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -53,7 +53,7 @@ export default function HomePage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
title="Search high-resolution photos"
|
title="Search high-resolution photos"
|
||||||
description="Discover millions of free stock photos from our community of talented photographers. Find the perfect image for your project."
|
description="Millions of royalty-free images. No subscriptions. Always free."
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
tag="Free Stock Photos"
|
tag="Free Stock Photos"
|
||||||
tagIcon={ImageIcon}
|
tagIcon={ImageIcon}
|
||||||
|
|||||||
@@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
--background: #ffffff;
|
--background: #ffffff;
|
||||||
--card: #f9f9f9;
|
--card: #f9f9f9;
|
||||||
--foreground: #120a00e6;
|
--foreground: #000f06e6;
|
||||||
--primary-cta: #FF7B05;
|
--primary-cta: #0a7039;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #120a00e6;
|
--secondary-cta-text: #000f06e6;
|
||||||
--accent: #e2e2e2;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #FF7B05;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user