Merge version_6 into main #12

Merged
bender merged 2 commits from version_6 into main 2026-03-04 12:48:26 +00:00
2 changed files with 17 additions and 77 deletions

View File

@@ -1,49 +1,21 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Kviten | Premium Floral Design & Arrangements", description: "Exquisite handcrafted flower arrangements for weddings, events, and special occasions. Premium quality blooms delivered with artistry and care.", keywords: "flowers, florist, arrangements, wedding flowers, event flowers, premium bouquets, floral design", metadataBase: new URL("https://kviten.com"),
alternates: {
canonical: "https://kviten.com"
},
robots: {
index: true,
follow: true
},
openGraph: {
title: "Kviten | Premium Floral Design & Arrangements", description: "Exquisite handcrafted flower arrangements for weddings, events, and special occasions.", siteName: "Kviten", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/girlfriend-standing-living-room-filled-with-romantic-gifts_482257-77346.jpg", alt: "Kviten Floral Arrangement"
}
]
},
twitter: {
card: "summary_large_image", title: "Kviten | Premium Floral Design & Arrangements", description: "Exquisite handcrafted flower arrangements for your special moments.", images: ["http://img.b2bpic.net/free-photo/girlfriend-standing-living-room-filled-with-romantic-gifts_482257-77346.jpg"]
}
};
title: "Kviten - Premium Floral Design", description: "Exquisite floral artistry for weddings, events, and special occasions"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
@@ -37,9 +37,9 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="Exquisite Flowerral Artistry"
description="Transform your moments into unforgettable memories with Kviten's handcrafted floral arrangements. Each bloom is carefully selected to create stunwerning designs that speak to the heart."
<HeroSplitDualMedia
title="Exquisite Floral Artistry"
description="Transform your moments into unforgettable memories with Kviten's handcrafted floral arrangements. Each bloom is carefully selected to create stunning designs that speak to the heart."
tag="Premium Flowers"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -48,41 +48,10 @@ export default function LandingPage() {
{ text: "Explore Designs", href: "#features" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
carouselItems={[
{
id: "1",
imageSrc: "http://img.b2bpic.net/free-photo/girlfriend-standing-living-room-filled-with-romantic-gifts_482257-77346.jpg?_wi=1",
imageAlt: "Red rose arrangement"
},
{
id: "2",
imageSrc: "http://img.b2bpic.net/free-photo/bouquet-flowers-tree_1153-1066.jpg",
imageAlt: "Wedding flower bouquet"
},
{
id: "3",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-blooming-flowers_23-2148443901.jpg",
imageAlt: "Elegant peony arrangement"
},
{
id: "4",
imageSrc: "http://img.b2bpic.net/free-photo/flowers-with-glass-beside_23-2148879003.jpg",
imageAlt: "Red carnation design"
},
{
id: "5",
imageSrc: "http://img.b2bpic.net/free-photo/empty-room-with-flowers-bouquet-valentines-day-event-celebrating-romantic-holiday-with-red-roses-boxes-sweet-presents-nobody-space-with-gifts-express-love-passion_482257-35457.jpg",
imageAlt: "Romantic rose arrangement"
},
{
id: "6",
imageSrc: "http://img.b2bpic.net/free-photo/floral-decor-woman-holding-bouquet-anthurium_140725-10842.jpg",
imageAlt: "Premium studio arrangement"
}
]}
autoPlay={true}
autoPlayInterval={4000}
imageSrc="http://img.b2bpic.net/free-photo/girlfriend-standing-living-room-filled-with-romantic-gifts_482257-77346.jpg?_wi=1"
imageAlt="Red rose arrangement"
videoSrc=""
mediaPosition="right"
/>
</div>
@@ -216,4 +185,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}