Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8dd94b55dd | |||
| 4b29f74399 | |||
| f20b5ffa9e | |||
| 66c02717f3 | |||
| 4abfd63e64 | |||
| 517afcdfea | |||
| dddd809e78 |
@@ -1,49 +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 { Archivo } from "next/font/google";
|
|
||||||
import "./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 archivo = Archivo({
|
|
||||||
variable: "--font-archivo", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "BACISIZ TR - Underground Street Culture Movement", description: "Where legends write their own rules. Join the global street culture movement. No limits, no excuses—just raw power.", keywords: "street culture, underground movement, cyberpunk, digital rebellion, community", openGraph: {
|
title: "BACISIZ TR - Underground Movement", description: "Raw power and digital street culture. Join the movement that refuses to follow standards."};
|
||||||
title: "BACISIZ TR - Underground Street Culture Movement", description: "Where legends write their own rules. No limits, no excuses—just raw power and digital street culture.", url: "https://bacisiztr.com", siteName: "BACISIZ TR", type: "website"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "BACISIZ TR - Underground Street Culture Movement", description: "Join the movement. No limits, no excuses. Raw power. Digital rebellion."},
|
|
||||||
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} ${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
|||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Join the Movement", href: "#contact" },
|
{ text: "Start Your Rebellion", href: "#contact" },
|
||||||
{ text: "Discover Culture", href: "#features" },
|
{ text: "Discover Culture", href: "#features" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -64,8 +64,6 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
className="min-h-screen"
|
className="min-h-screen"
|
||||||
titleClassName="text-5xl md:text-7xl font-black tracking-tight"
|
|
||||||
descriptionClassName="text-lg md:text-xl font-medium opacity-90"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -80,8 +78,6 @@ export default function LandingPage() {
|
|||||||
{ icon: Crown, label: "Global Impact", value: "RISING" },
|
{ icon: Crown, label: "Global Impact", value: "RISING" },
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
titleClassName="text-4xl md:text-5xl font-black"
|
|
||||||
metricLabelClassName="font-semibold text-sm md:text-base"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -108,10 +104,6 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tag="VISUAL GALLERY"
|
tag="VISUAL GALLERY"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
titleClassName="text-4xl md:text-5xl font-black"
|
|
||||||
descriptionClassName="text-base md:text-lg opacity-85"
|
|
||||||
cardTitleClassName="text-xl font-bold"
|
|
||||||
cardDescriptionClassName="text-sm opacity-75"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -134,9 +126,6 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
titleClassName="text-2xl font-bold"
|
|
||||||
descriptionClassName="text-base md:text-lg opacity-85"
|
|
||||||
valueClassName="text-6xl font-black"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -187,8 +176,6 @@ export default function LandingPage() {
|
|||||||
buttonText="Join the Movement"
|
buttonText="Join the Movement"
|
||||||
termsText="By joining, you agree to be part of the BACISIZ TR movement. We respect your rebellion."
|
termsText="By joining, you agree to be part of the BACISIZ TR movement. We respect your rebellion."
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
titleClassName="text-4xl md:text-5xl font-black"
|
|
||||||
descriptionClassName="text-base md:text-lg opacity-85"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user