Merge version_1 into main #1
@@ -106,7 +106,7 @@ export default function AboutPage() {
|
||||
description="Founded in 2009, Inline has grown into one of the most respected floral design studios in the region. Our commitment to quality, innovation, and customer satisfaction drives everything we do."
|
||||
subdescription="Our team of award-winning designers combines traditional techniques with contemporary aesthetics to create arrangements that transcend expectations. We source flowers from premium growers worldwide and employ sustainable, eco-friendly practices throughout our process."
|
||||
icon={Award}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=e62dlj"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=e62dlj&_wi=2"
|
||||
imageAlt="Inline Studio Team"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
|
||||
@@ -102,42 +102,42 @@ export default function CollectionsPage() {
|
||||
id: "wedding-classic",
|
||||
name: "Wedding - Classic Romance",
|
||||
price: "$350",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=of7uht",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=of7uht&_wi=2",
|
||||
imageAlt: "Classic Wedding Floral Arrangement",
|
||||
},
|
||||
{
|
||||
id: "wedding-modern",
|
||||
name: "Wedding - Modern Minimalist",
|
||||
price: "$320",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=of7uht",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=of7uht&_wi=3",
|
||||
imageAlt: "Modern Wedding Arrangement",
|
||||
},
|
||||
{
|
||||
id: "events-corporate",
|
||||
name: "Events - Corporate Centerpieces",
|
||||
price: "$200",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=paeinp",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=paeinp&_wi=2",
|
||||
imageAlt: "Corporate Event Flowers",
|
||||
},
|
||||
{
|
||||
id: "events-gala",
|
||||
name: "Events - Gala Elegance",
|
||||
price: "$280",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=paeinp",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=paeinp&_wi=3",
|
||||
imageAlt: "Gala Event Floral Centerpiece",
|
||||
},
|
||||
{
|
||||
id: "daily-seasonal",
|
||||
name: "Daily - Seasonal Selection",
|
||||
price: "$55",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s9lkf6",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s9lkf6&_wi=2",
|
||||
imageAlt: "Seasonal Fresh Flowers",
|
||||
},
|
||||
{
|
||||
id: "daily-subscription",
|
||||
name: "Daily - Weekly Subscription",
|
||||
price: "$50/week",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s9lkf6",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s9lkf6&_wi=3",
|
||||
imageAlt: "Weekly Flower Subscription",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,54 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Archivo } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Inline - Luxury Flowers & Floral Design Studio",
|
||||
description: "Discover premium floral design and arrangements at Inline. Luxury flowers for weddings, events, and everyday moments with expert consultation and delivery.",
|
||||
keywords: "luxury flowers, floral design, wedding flowers, event flowers, flower arrangements, florist, floral studio, premium flowers",
|
||||
metadataBase: new URL("https://inlineflowers.com"),
|
||||
alternates: {
|
||||
canonical: "https://inlineflowers.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Inline - Luxury Flowers & Floral Design Studio",
|
||||
description: "Premium floral design and arrangements for every occasion. Expert consultation, same-day delivery, and botanical excellence.",
|
||||
url: "https://inlineflowers.com",
|
||||
siteName: "Inline",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Inline - Luxury Flowers & Floral Design Studio",
|
||||
description: "Premium floral design and arrangements for weddings, events, and daily moments.",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +57,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -116,7 +116,7 @@ export default function HomePage() {
|
||||
description="At Inline, we believe flowers are more than just plants—they're storytellers. Each arrangement we create is a masterpiece designed to capture emotion, celebrate moments, and inspire wonder."
|
||||
subdescription="With over 15 years of expertise in botanical design, our team transforms your vision into stunning reality. We source premium flowers, employ sustainable practices, and deliver unparalleled artistry."
|
||||
icon={Flower2}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=e62dlj"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=e62dlj&_wi=1"
|
||||
imageAlt="Inline Flowers Studio Team Creating Arrangements"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
@@ -138,21 +138,21 @@ export default function HomePage() {
|
||||
id: "wedding",
|
||||
name: "Wedding Dreams",
|
||||
price: "From $250",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=of7uht",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=of7uht&_wi=1",
|
||||
imageAlt: "Premium Wedding Floral Arrangements",
|
||||
},
|
||||
{
|
||||
id: "events",
|
||||
name: "Event Elegance",
|
||||
price: "From $150",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=paeinp",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=paeinp&_wi=1",
|
||||
imageAlt: "Luxury Event Floral Centerpieces",
|
||||
},
|
||||
{
|
||||
id: "daily",
|
||||
name: "Daily Freshness",
|
||||
price: "From $45",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s9lkf6",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=s9lkf6&_wi=1",
|
||||
imageAlt: "Fresh Daily Flower Arrangements",
|
||||
},
|
||||
]}
|
||||
@@ -184,7 +184,7 @@ export default function HomePage() {
|
||||
title: "Personal Consultation",
|
||||
description: "Work directly with our expert designers to bring your floral vision to life with personalized guidance and creative expertise.",
|
||||
tag: "1-on-1 Sessions",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mcmpbv",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mcmpbv&_wi=1",
|
||||
imageAlt: "Professional Floral Consultation Service",
|
||||
},
|
||||
{
|
||||
@@ -192,7 +192,7 @@ export default function HomePage() {
|
||||
title: "Premium Delivery",
|
||||
description: "Rest assured knowing your arrangements arrive fresh and perfect. Our white-glove delivery service ensures every petal is pristine.",
|
||||
tag: "Same-Day Available",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cmok8e",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cmok8e&_wi=1",
|
||||
imageAlt: "Luxury Flower Delivery Service",
|
||||
},
|
||||
{
|
||||
@@ -200,7 +200,7 @@ export default function HomePage() {
|
||||
title: "Floral Workshops",
|
||||
description: "Learn the art of flower arranging from industry professionals. Perfect for individuals or corporate team building experiences.",
|
||||
tag: "Group & Private",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tsntct",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tsntct&_wi=1",
|
||||
imageAlt: "Floral Design Workshop Class",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -109,7 +109,7 @@ export default function ServicesPage() {
|
||||
"Our experienced designers listen to your vision and transform it into stunning reality. We provide personalized guidance on color palettes, arrangements, and botanical selections.",
|
||||
tag: "Personalized",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mcmpbv",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mcmpbv&_wi=2",
|
||||
imageAlt: "Professional Floral Consultation",
|
||||
},
|
||||
{
|
||||
@@ -119,7 +119,7 @@ export default function ServicesPage() {
|
||||
"Each arrangement is handled with care from our studio to your venue. Same-day delivery available for most orders. We ensure every flower arrives in perfect condition.",
|
||||
tag: "Same-Day Available",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cmok8e",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cmok8e&_wi=2",
|
||||
imageAlt: "Premium Delivery Service",
|
||||
},
|
||||
{
|
||||
@@ -129,7 +129,7 @@ export default function ServicesPage() {
|
||||
"Learn floral design techniques from industry experts. Perfect for personal enrichment or team building. Customized workshops available for corporate events.",
|
||||
tag: "Group & Private",
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tsntct",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tsntct&_wi=2",
|
||||
imageAlt: "Floral Design Workshop",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user