Merge version_2 into main #6
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Archibald Sisters | 150 Custom Fragrances & Artisanal Gifts Since 1975", description: "Discover 150+ custom fragrances, luxe bath products, and unique gifts at Archibald Sisters. Nostalgic Olympia boutique with 50 years of authentic scent and sensory experiences.", keywords: "custom fragrances, artisanal perfume, bath products, unique gifts, Olympia boutique, scent discovery, luxury gifts, nostalgia", metadataBase: new URL("https://archibaldsisisters.com"),
|
||||
alternates: {
|
||||
canonical: "https://archibaldsisisters.com"},
|
||||
openGraph: {
|
||||
title: "Archibald Sisters | Authentic Scents & Quirky Gifts Since 1975", description: "Discover 150+ custom fragrances, luxe bath products, and unique gifts. Beloved Olympia boutique for sensory experiences and community connection.", url: "https://archibaldsisisters.com", siteName: "Archibald Sisters", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/ceremonial-wedding-candles-with-white-ribbons-engagement-ring-perfume-wooden-floor_8353-10520.jpg", alt: "Archibald Sisters custom fragrances"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Archibald Sisters | Authentic Scents Since 1975", description: "150+ custom fragrances, luxe bath products, and unique gifts from Olympia's beloved boutique.", images: ["http://img.b2bpic.net/free-photo/ceremonial-wedding-candles-with-white-ribbons-engagement-ring-perfume-wooden-floor_8353-10520.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
||||
title="Authentic Scents & Quirky Gifts"
|
||||
description="Discover 150 custom fragrances, luxe bath products, and whimsical gifts crafted for the senses. Shop online or visit our beloved Olympia boutique to experience the magic in person."
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "products" },
|
||||
{ text: "Discover Your Scent", href: "products" },
|
||||
{ text: "Visit Us", href: "contact" }
|
||||
]}
|
||||
leftCarouselItems={[
|
||||
|
||||
Reference in New Issue
Block a user