diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4859ece..9921d6b 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { Source_Sans_3 } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Horror Zociety | Premium Horror Brand & Community", description: "Experience authentic horror culture with Horror Zociety. Exclusive merchandise, curated content, and a passionate community for horror enthusiasts.", keywords: "horror brand, horror merchandise, horror community, gothic apparel, horror culture", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Horror Zociety | Embrace the Darkness", description: "Join the ultimate horror brand community. Exclusive merchandise, stories, and experiences celebrating the art of fear.", type: "website", siteName: "Horror Zociety", images: [
- {
- url: "http://img.b2bpic.net/free-photo/fog-forest-autumn_250224-335.jpg", alt: "Horror Zociety - Dark atmospheric imagery"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Horror Zociety | Premium Horror Brand", description: "Experience authentic horror culture with exclusive merchandise and vibrant community.", images: ["http://img.b2bpic.net/free-photo/fog-forest-autumn_250224-335.jpg"],
- },
-};
+ title: "Horror Zociety", description: "Embrace the darkness. Explore the boundaries of terror with Horror Zociety—your exclusive horror brand community."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 764bb3e..0cdfff8 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -46,7 +46,7 @@ export default function LandingPage() {
logoText="HORROR ZOCIETY"
description="Embrace the darkness. Explore the boundaries of terror with our exclusive horror brand community. Discover merchandise, stories, and experiences that celebrate the art of fear."
buttons={[
- { text: "Enter the Void", href: "#store" },
+ { text: "Shop Now", href: "#store" },
{ text: "Join Us", href: "#testimonials" },
]}
buttonAnimation="slide-up"
@@ -80,16 +80,20 @@ export default function LandingPage() {
features={[
{
id: 1,
- title: "Haunted Heritage", description: "Explore the rich history of horror cinema, literature, and folklore through expertly curated collections that celebrate classic and contemporary terror.", imageSrc: "http://img.b2bpic.net/free-photo/abandoned-old-hospital-beelitz_181624-25803.jpg?_wi=1"},
+ title: "Haunted Heritage", description: "Explore the rich history of horror cinema, literature, and folklore through expertly curated collections that celebrate classic and contemporary terror.", imageSrc: "http://img.b2bpic.net/free-photo/abandoned-old-hospital-beelitz_181624-25803.jpg?_wi=1"
+ },
{
id: 2,
- title: "Creature Lore", description: "Immerse yourself in the mythology and evolution of iconic horror creatures, from ancient legends to modern interpretations of supernatural terror.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-scary-african-shaman-female-with-petrified-cracked-skin-dreadlocks-dark-background-make-up-concept_613910-18525.jpg?_wi=1"},
+ title: "Creature Lore", description: "Immerse yourself in the mythology and evolution of iconic horror creatures, from ancient legends to modern interpretations of supernatural terror.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-scary-african-shaman-female-with-petrified-cracked-skin-dreadlocks-dark-background-make-up-concept_613910-18525.jpg?_wi=1"
+ },
{
id: 3,
- title: "Psychological Depths", description: "Delve into the psychological aspects of horror—exploring the human mind, trauma, and the artistry behind cinematic and literary suspense.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-scary-clown_23-2150549653.jpg?_wi=1"},
+ title: "Psychological Depths", description: "Delve into the psychological aspects of horror—exploring the human mind, trauma, and the artistry behind cinematic and literary suspense.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-scary-clown_23-2150549653.jpg?_wi=1"
+ },
{
id: 4,
- title: "Apocalyptic Visions", description: "Experience dystopian and post-apocalyptic narratives that challenge our understanding of survival, society, and the future of humanity.", imageSrc: "http://img.b2bpic.net/free-photo/zombies-walking-city_23-2150838756.jpg?_wi=1"},
+ title: "Apocalyptic Visions", description: "Experience dystopian and post-apocalyptic narratives that challenge our understanding of survival, society, and the future of humanity.", imageSrc: "http://img.b2bpic.net/free-photo/zombies-walking-city_23-2150838756.jpg?_wi=1"
+ },
]}
title="The Pillars of Terror"
description="Discover what makes Horror Zociety the ultimate destination for fear connoisseurs."
@@ -105,13 +109,17 @@ export default function LandingPage() {