6 Commits

Author SHA1 Message Date
11083d14bf Merge version_3 into main
Merge version_3 into main
2026-03-07 12:40:15 +00:00
e1e1860218 Update src/app/page.tsx 2026-03-07 12:40:11 +00:00
2265472cd8 Merge version_2 into main
Merge version_2 into main
2026-03-07 12:36:34 +00:00
b6e0a57f00 Update src/app/page.tsx 2026-03-07 12:36:30 +00:00
8d5e36648f Update src/app/layout.tsx 2026-03-07 12:36:30 +00:00
a0dc714bc3 Merge version_1 into main
Merge version_1 into main
2026-03-07 12:34:23 +00:00
2 changed files with 9 additions and 38 deletions

View File

@@ -1,48 +1,20 @@
import type { Metadata } from "next";
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 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: "FlipVault - Authentic Luxury Resale Fashion & Colognes", description: "Shop verified luxury fashion, colognes, and airport exclusives at FlipVault. Authentic items with guaranteed quality. Located in Turkey.", keywords: "luxury resale, designer fashion, authentic colognes, airport exclusives, verified luxury", metadataBase: new URL("https://flipvault.com"),
alternates: {
canonical: "https://flipvault.com"},
openGraph: {
title: "FlipVault - Premium Luxury Resale", description: "Discover authentic luxury fashion and colognes at FlipVault. Verified products, fast shipping, expert support.", url: "https://flipvault.com", siteName: "FlipVault", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/blurred-escalator-seen-from_1203-1286.jpg", alt: "FlipVault luxury collection"},
],
},
twitter: {
card: "summary_large_image", title: "FlipVault - Authentic Luxury Resale", description: "Shop verified designer items, colognes, and airport exclusives", images: ["http://img.b2bpic.net/free-photo/blurred-escalator-seen-from_1203-1286.jpg"],
},
};
title: "FlipVault - Premium Luxury Resale", description: "Authentic luxury fashion, exclusive colognes, and airport exclusives at exceptional prices."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -90,7 +90,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "View Full Shop", href: "#contact" }]}
buttons={[{ text: "Browse Full Collection", href: "#products" }]}
/>
</div>
@@ -163,8 +163,8 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
tag="Get in Touch"
title="Connect with FlipVault"
description="Have questions or want to know more? Reach out to us via Instagram @fli_pvault or call us at +90 552 692 9984. We're based in Turkey and ready to help!"
title="Ready to Shop?"
description="Message us on Instagram @fli_pvault or call +90 552 692 9984 to get started today."
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
tagAnimation="slide-up"