Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-15 16:22:27 +00:00
4 changed files with 81 additions and 49 deletions

View File

@@ -99,7 +99,7 @@ export default function AboutPage() {
{
title: "Authentic Style",
description: "Our pieces celebrate individuality and self-expression through bold, playful designs.",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg?_wi=5",
imageAlt: "Authentic fashion style",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -107,7 +107,7 @@ export default function AboutPage() {
{
title: "Sustainable Fashion",
description: "We're committed to eco-friendly materials and ethical production practices.",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg?_wi=5",
imageAlt: "Sustainable fashion",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -115,7 +115,7 @@ export default function AboutPage() {
{
title: "Community First",
description: "VIBE is more than clothes—it's a community of trendsetters and creators like you.",
imageSrc: "http://img.b2bpic.net/free-photo/spring-outdoor-fashion-details-woman-posing-city-blooming-park_291049-1130.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/spring-outdoor-fashion-details-woman-posing-city-blooming-park_291049-1130.jpg?_wi=3",
imageAlt: "Community-driven fashion",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -137,7 +137,7 @@ export default function AboutPage() {
role: "Fashion Enthusiast",
company: "Student",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-her-arm-power-green-jacket-jeans-looking-serious-front-view_176474-51818.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-her-arm-power-green-jacket-jeans-looking-serious-front-view_176474-51818.jpg?_wi=2",
imageAlt: "Sophia Chen",
},
{
@@ -146,7 +146,7 @@ export default function AboutPage() {
role: "Streetwear Lover",
company: "Creative",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/funny-smiling-hipster-handsome-man-guy-stylish-summer-cloth-street-sunglasses_158538-2254.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/funny-smiling-hipster-handsome-man-guy-stylish-summer-cloth-street-sunglasses_158538-2254.jpg?_wi=2",
imageAlt: "Marcus Johnson",
},
{
@@ -155,7 +155,7 @@ export default function AboutPage() {
role: "Style Influencer",
company: "Content Creator",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-brunette-model-dressed-summer-hipster-jacket-jeans-clothes-trendy-girl-sitting-bench-street_158538-1668.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-brunette-model-dressed-summer-hipster-jacket-jeans-clothes-trendy-girl-sitting-bench-street_158538-1668.jpg?_wi=2",
imageAlt: "Emma Rodriguez",
},
{
@@ -164,7 +164,7 @@ export default function AboutPage() {
role: "Fashion Designer",
company: "Independent",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/short-haired-curly-woman-with-stylish-bright-glasses-red-shirt-with-long-sleeve-smiles-isolated-lilac_197531-19272.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/short-haired-curly-woman-with-stylish-bright-glasses-red-shirt-with-long-sleeve-smiles-isolated-lilac_197531-19272.jpg?_wi=2",
imageAlt: "Alex Kim",
},
]}

View File

@@ -1,24 +1,54 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } 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 { Raleway } 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 raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "VIBE Collective - Modern Streetwear Fashion",
description: "Discover trendy Gen-Z fashion with pastel pink, lavender, and cream aesthetics. Shop our exclusive streetwear collection of tops, skirts, shoes, and more.",
keywords: "Gen-Z fashion, streetwear, pink fashion, lavender aesthetic, casual style, online clothing",
openGraph: {
title: "VIBE Collective - Modern Streetwear Fashion",
description: "Discover trendy Gen-Z fashion with pastel pink, lavender, and cream aesthetics.",
siteName: "VIBE Collective",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-young-man-posing-outdoors_23-2151038562.jpg",
alt: "fashion model streetwear pose confident",
},
],
},
twitter: {
card: "summary_large_image",
title: "VIBE Collective - Modern Streetwear Fashion",
description: "Shop trendy Gen-Z fashion with pastel pink, lavender, and cream aesthetics.",
images: [
"http://img.b2bpic.net/free-photo/medium-shot-young-man-posing-outdoors_23-2151038562.jpg",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -112,27 +112,27 @@ export default function HomePage() {
},
{
id: "carousel-2",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg?_wi=1",
imageAlt: "Pastel pink cropped t-shirt",
},
{
id: "carousel-3",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg?_wi=1",
imageAlt: "Lavender mini skirt",
},
{
id: "carousel-4",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg?_wi=1",
imageAlt: "Cream oversized jacket",
},
{
id: "carousel-5",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg?_wi=1",
imageAlt: "White platform sneakers",
},
{
id: "carousel-6",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg?_wi=1",
imageAlt: "Pink cargo pants",
},
]}
@@ -150,7 +150,7 @@ export default function HomePage() {
{
title: "Tops",
description: "Cropped tees, baby tees, oversized shirts, and more",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg?_wi=2",
imageAlt: "Pastel pink cropped t-shirt",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -158,7 +158,7 @@ export default function HomePage() {
{
title: "Skirts",
description: "Mini skirts, maxi skirts, and playful bottoms",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg?_wi=2",
imageAlt: "Lavender mini skirt",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -166,7 +166,7 @@ export default function HomePage() {
{
title: "Shoes",
description: "Sneakers, platform shoes, and trendy footwear",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg?_wi=2",
imageAlt: "White platform sneakers",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -174,7 +174,7 @@ export default function HomePage() {
{
title: "Jackets",
description: "Blazers, oversized jackets, and outerwear",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg?_wi=2",
imageAlt: "Cream oversized jacket",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -182,7 +182,7 @@ export default function HomePage() {
{
title: "Bags",
description: "Crossbody bags, totes, and accessories",
imageSrc: "http://img.b2bpic.net/free-photo/spring-outdoor-fashion-details-woman-posing-city-blooming-park_291049-1130.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/spring-outdoor-fashion-details-woman-posing-city-blooming-park_291049-1130.jpg?_wi=1",
imageAlt: "Cream crossbody bag",
buttonIcon: ArrowRight,
buttonHref: "/shop",
@@ -205,7 +205,7 @@ export default function HomePage() {
price: "$28",
rating: 5,
reviewCount: "342",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg?_wi=3",
imageAlt: "Pastel pink cropped t-shirt",
},
{
@@ -215,7 +215,7 @@ export default function HomePage() {
price: "$45",
rating: 5,
reviewCount: "289",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg?_wi=3",
imageAlt: "Lavender mini skirt",
},
{
@@ -225,7 +225,7 @@ export default function HomePage() {
price: "$85",
rating: 5,
reviewCount: "156",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg?_wi=3",
imageAlt: "Cream oversized jacket",
},
{
@@ -235,7 +235,7 @@ export default function HomePage() {
price: "$95",
rating: 5,
reviewCount: "421",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg?_wi=3",
imageAlt: "White platform sneakers",
},
]}
@@ -258,7 +258,7 @@ export default function HomePage() {
price: "$24",
rating: 5,
reviewCount: "198",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-green-t-shirt-making-defense-gesture-with-disgusted-expression-standing-orange-wall_141793-29231.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-green-t-shirt-making-defense-gesture-with-disgusted-expression-standing-orange-wall_141793-29231.jpg?_wi=1",
imageAlt: "Pastel green baby tee",
},
{
@@ -268,7 +268,7 @@ export default function HomePage() {
price: "$68",
rating: 5,
reviewCount: "267",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-basket-gathering-lavander_1303-23372.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-basket-gathering-lavander_1303-23372.jpg?_wi=1",
imageAlt: "Lavender maxi dress",
},
{
@@ -278,7 +278,7 @@ export default function HomePage() {
price: "$62",
rating: 5,
reviewCount: "312",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg?_wi=2",
imageAlt: "Pink cargo pants",
},
{
@@ -288,7 +288,7 @@ export default function HomePage() {
price: "$35",
rating: 5,
reviewCount: "145",
imageSrc: "http://img.b2bpic.net/free-photo/young-tourist-touching-hat_23-2147835253.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-tourist-touching-hat_23-2147835253.jpg?_wi=1",
imageAlt: "Lavender bucket hat",
},
]}
@@ -311,7 +311,7 @@ export default function HomePage() {
price: "$62",
rating: 5,
reviewCount: "523",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg?_wi=3",
imageAlt: "Pink cargo pants",
},
{
@@ -321,7 +321,7 @@ export default function HomePage() {
price: "$35",
rating: 5,
reviewCount: "401",
imageSrc: "http://img.b2bpic.net/free-photo/young-tourist-touching-hat_23-2147835253.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-tourist-touching-hat_23-2147835253.jpg?_wi=2",
imageAlt: "Lavender bucket hat",
},
{
@@ -331,7 +331,7 @@ export default function HomePage() {
price: "$72",
rating: 5,
reviewCount: "367",
imageSrc: "http://img.b2bpic.net/free-photo/spring-outdoor-fashion-details-woman-posing-city-blooming-park_291049-1130.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/spring-outdoor-fashion-details-woman-posing-city-blooming-park_291049-1130.jpg?_wi=2",
imageAlt: "Cream crossbody bag",
},
{
@@ -341,7 +341,7 @@ export default function HomePage() {
price: "$95",
rating: 5,
reviewCount: "612",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg?_wi=4",
imageAlt: "White platform sneakers",
},
]}
@@ -363,7 +363,7 @@ export default function HomePage() {
role: "Fashion Enthusiast",
company: "Student",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-her-arm-power-green-jacket-jeans-looking-serious-front-view_176474-51818.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-her-arm-power-green-jacket-jeans-looking-serious-front-view_176474-51818.jpg?_wi=1",
imageAlt: "Sophia Chen",
},
{
@@ -372,7 +372,7 @@ export default function HomePage() {
role: "Streetwear Lover",
company: "Creative",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/funny-smiling-hipster-handsome-man-guy-stylish-summer-cloth-street-sunglasses_158538-2254.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/funny-smiling-hipster-handsome-man-guy-stylish-summer-cloth-street-sunglasses_158538-2254.jpg?_wi=1",
imageAlt: "Marcus Johnson",
},
{
@@ -381,7 +381,7 @@ export default function HomePage() {
role: "Style Influencer",
company: "Content Creator",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-brunette-model-dressed-summer-hipster-jacket-jeans-clothes-trendy-girl-sitting-bench-street_158538-1668.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-brunette-model-dressed-summer-hipster-jacket-jeans-clothes-trendy-girl-sitting-bench-street_158538-1668.jpg?_wi=1",
imageAlt: "Emma Rodriguez",
},
{
@@ -390,7 +390,7 @@ export default function HomePage() {
role: "Fashion Designer",
company: "Independent",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/short-haired-curly-woman-with-stylish-bright-glasses-red-shirt-with-long-sleeve-smiles-isolated-lilac_197531-19272.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/short-haired-curly-woman-with-stylish-bright-glasses-red-shirt-with-long-sleeve-smiles-isolated-lilac_197531-19272.jpg?_wi=1",
imageAlt: "Alex Kim",
},
]}

View File

@@ -91,7 +91,7 @@ export default function ShopPage() {
price: "$28",
rating: 5,
reviewCount: "342",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fashion-woman-casual-hipster-summer-clothes_158538-7831.jpg?_wi=4",
imageAlt: "Pastel pink cropped t-shirt",
},
{
@@ -101,7 +101,7 @@ export default function ShopPage() {
price: "$45",
rating: 5,
reviewCount: "289",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-hawaiian-shirts-hangers-with-wallet_23-2149366043.jpg?_wi=4",
imageAlt: "Lavender mini skirt",
},
{
@@ -111,7 +111,7 @@ export default function ShopPage() {
price: "$85",
rating: 5,
reviewCount: "156",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-jacket-covering-her-forehead_176474-92539.jpg?_wi=4",
imageAlt: "Cream oversized jacket",
},
{
@@ -121,7 +121,7 @@ export default function ShopPage() {
price: "$95",
rating: 5,
reviewCount: "421",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-s-legs-with-dish-poutine_23-2149486028.jpg?_wi=5",
imageAlt: "White platform sneakers",
},
{
@@ -131,7 +131,7 @@ export default function ShopPage() {
price: "$24",
rating: 5,
reviewCount: "198",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-green-t-shirt-making-defense-gesture-with-disgusted-expression-standing-orange-wall_141793-29231.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-short-curly-hair-green-t-shirt-making-defense-gesture-with-disgusted-expression-standing-orange-wall_141793-29231.jpg?_wi=2",
imageAlt: "Pastel green baby tee",
},
{
@@ -141,7 +141,7 @@ export default function ShopPage() {
price: "$68",
rating: 5,
reviewCount: "267",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-basket-gathering-lavander_1303-23372.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-basket-gathering-lavander_1303-23372.jpg?_wi=2",
imageAlt: "Lavender maxi dress",
},
{
@@ -151,7 +151,7 @@ export default function ShopPage() {
price: "$62",
rating: 5,
reviewCount: "312",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-camera-nature_23-2148192711.jpg?_wi=4",
imageAlt: "Pink cargo pants",
},
{
@@ -161,7 +161,7 @@ export default function ShopPage() {
price: "$35",
rating: 5,
reviewCount: "145",
imageSrc: "http://img.b2bpic.net/free-photo/young-tourist-touching-hat_23-2147835253.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-tourist-touching-hat_23-2147835253.jpg?_wi=3",
imageAlt: "Lavender bucket hat",
},
]}