Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-06-10 20:46:05 +00:00
2 changed files with 27 additions and 36 deletions

View File

@@ -11,39 +11,29 @@ import { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = {
title: 'Outfitter Style - Discover Your Signature Look',
description: 'Shop modern and responsive fashion for a clean, premium style. Explore curated collections with black, white, and beige aesthetics at Outfitter Style.',
title: 'AR H - Premium Fashion & Luxury Apparel',
description: 'Discover AR H: a curated collection of modern, responsive, premium fashion. Elevate your style with exclusive designs and timeless elegance in black, blue, and grey tones.',
openGraph: {
"title": "Outfitter Style - Modern Fashion E-commerce",
"description": "Curated fashion that blends timeless elegance with modern trends. Express yourself with Outfitter Style.",
"url": "https://www.outfitterstyle.com",
"siteName": "Outfitter Style",
"images": [
"title": "AR H - Premium Fashion & Luxury Apparel", "description": "Experience the fusion of timeless elegance and avant-garde design. AR H offers exclusive fashion for the discerning individual.", "url": "https://www.arh.com", "siteName": "AR H", "images": [
{
"url": "http://img.b2bpic.net/free-photo/portrait-fashionable-robot_23-2151845048.jpg",
"alt": "Model wearing a classic black dress"
"url": "http://img.b2bpic.net/free-photo/young-beautiful-woman-black-dress_158595-364.jpg", "alt": "Model wearing a classic black dress"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Outfitter Style - Modern Fashion E-commerce",
"description": "Curated fashion that blends timeless elegance with modern trends. Express yourself with Outfitter Style.",
"images": [
"http://img.b2bpic.net/free-photo/portrait-fashionable-robot_23-2151845048.jpg"
"card": "summary_large_image", "title": "AR H - Premium Fashion & Luxury Apparel", "description": "Experience the fusion of timeless elegance and avant-garde design. AR H offers exclusive fashion for the discerning individual.", "images": [
"http://img.b2bpic.net/free-photo/young-beautiful-woman-black-dress_158595-364.jpg"
]
},
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export default function RootLayout({

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactText from "@/components/sections/contact/ContactText";
import FaqBase from "@/components/sections/faq/FaqBase";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import HeroCentered from "@/components/sections/hero/HeroCentered";
import MediaAbout from "@/components/sections/about/MediaAbout";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
@@ -222,17 +222,17 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitText
<FaqBase
useInvertedBackground={false}
faqsAnimation="slide-up"
sideTitle="Your Style Questions, Answered"
sideDescription="Browse our comprehensive FAQ section to find answers to common questions about shopping, sizing, returns, and more. If you can't find what you're looking for, our support team is ready to assist."
title="Your Style Questions, Answered"
description="Browse our comprehensive FAQ section to find answers to common questions about shopping, sizing, returns, and more. If you can't find what you're looking for, our support team is ready to assist."
buttons={[
{
text: "Contact Support", href: "#contact"
}
]}
textPosition="left"
textboxLayout="default"
faqs={[
{
id: "1", title: "What is your return policy?", content: "We offer free returns within 30 days of purchase for unworn items with tags attached. Please visit our 'Returns' page for detailed instructions and to initiate a return."
@@ -254,23 +254,22 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactText
useInvertedBackground={false}
background={{
variant: "sparkles-gradient"
}}
tag="Stay Connected"
title="Join Our Style Community"
description="Sign up for exclusive updates, new arrivals, and special offers. We promise to only send you the best of Outfitter Style."
inputPlaceholder="Enter your email address"
buttonText="Subscribe Now"
termsText="By clicking Subscribe Now you're confirming that you agree with our Privacy Policy."
onSubmit={(email) => console.log("Subscribed email:", email)}
text="Stay Connected. Join Our Style Community. Sign up for exclusive updates, new arrivals, and special offers. We promise to only send you the best of Outfitter Style."
buttons={[
{
text: "Subscribe Now", href: "#contact"
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterMedia
columns={[
{
title: "Shop", items: [
@@ -318,8 +317,10 @@ export default function LandingPage() {
]
}
]}
bottomLeftText="© 2024 Outfitter Style. All rights reserved."
bottomRightText="Designed with passion."
logoText="Outfitter Style"
copyrightText="© 2024 Outfitter Style. All rights reserved."
imageSrc="http://img.b2bpic.net/free-photo/empty-clothing-department-store-shopping-mall-new-fashion-collection-shelf-fashionable-clothes-hangers-accessories-modern-boutique-with-merchandise-sale-customers_482257-65524.jpg"
imageAlt="Elegant fashion boutique interior"
/>
</div>
</ReactLenis>