19 Commits

Author SHA1 Message Date
cfeeef8049 Merge version_2 into main
Merge version_2 into main
2026-03-06 23:07:33 +00:00
4ce23f9eec Update src/app/page.tsx 2026-03-06 23:07:29 +00:00
79bc7a0476 Update src/app/layout.tsx 2026-03-06 23:07:29 +00:00
e3931e96bc Merge version_2 into main
Merge version_2 into main
2026-03-06 23:05:32 +00:00
e57006f4cb Update src/app/page.tsx 2026-03-06 23:05:28 +00:00
07dc5d5aee Update src/app/page.tsx 2026-03-06 22:56:16 +00:00
0dc5d76027 Merge version_1 into main
Merge version_1 into main
2026-03-06 22:54:19 +00:00
40a03ea32a Merge version_2 into main
Merge version_2 into main
2026-03-06 22:52:55 +00:00
41dfc6705d Update src/app/page.tsx 2026-03-06 22:51:01 +00:00
24f843ea10 Update src/app/layout.tsx 2026-03-06 22:51:00 +00:00
ea29b076ca Update src/app/page.tsx 2026-03-06 22:49:26 +00:00
ad59122031 Update src/app/layout.tsx 2026-03-06 22:49:25 +00:00
643be2fde7 Switch to version 1: modified src/app/page.tsx 2026-03-06 22:48:24 +00:00
39c8c0a632 Switch to version 1: modified src/app/layout.tsx 2026-03-06 22:48:24 +00:00
5469ce6f19 Merge version_2 into main
Merge version_2 into main
2026-03-06 22:30:56 +00:00
ebf28289a6 Update src/app/page.tsx 2026-03-06 22:30:52 +00:00
2d48679e66 Update src/app/layout.tsx 2026-03-06 22:30:51 +00:00
9ec79dd7c9 Merge version_1 into main
Merge version_1 into main
2026-03-06 21:50:42 +00:00
8445def991 Merge version_1 into main
Merge version_1 into main
2026-03-06 21:48:55 +00:00
2 changed files with 16 additions and 46 deletions

View File

@@ -1,57 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } 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 nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Serene Studios | Luxury Avant-Garde Fashion", description: "Serene Studios creates conceptual luxury fashion where silence speaks louder than noise. Editorial aesthetic, restrained design, timeless pieces for design aesthetes.", keywords: "luxury fashion, avant-garde design, editorial aesthetic, minimalist clothing, contemporary luxury brand, designer clothing", metadataBase: new URL("https://serenestudios.com"),
alternates: {
canonical: "https://serenestudios.com"},
openGraph: {
title: "Serene Studios | Silence in Design", description: "Conceptual luxury fashion that whispers rather than shouts. Pieces designed for those who understand restraint as ultimate luxury.", url: "https://serenestudios.com", siteName: "Serene Studios", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/view-human-hand-with-mirror_23-2149512324.jpg", alt: "luxury fashion editorial studio aesthetic"},
],
},
twitter: {
card: "summary_large_image", title: "Serene Studios | Luxury Avant-Garde Fashion", description: "Editorial luxury fashion. Silence in design. Timeless pieces.", images: ["http://img.b2bpic.net/free-photo/view-human-hand-with-mirror_23-2149512324.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Serene Studios - Editorial Fashion & Design", description: "Serene Studios explores the intersection of restraint, identity, and intentional creation. Avant-garde fashion with conceptual rigor."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
@@ -11,7 +11,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Award, ArrowRight, Eye, HelpCircle, Infinity, Package, Palette, Pen, Sparkles, Star, Target, Zap } from "lucide-react";
import { Award, ArrowRight, Eye, HelpCircle, Infinity, Package, Palette, Pen, Sparkles, Star, Target, Zap, Mail, Phone, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -34,7 +34,7 @@ export default function LandingPage() {
{ name: "Collection", id: "products" },
{ name: "About", id: "about" },
{ name: "Approach", id: "approach" },
{ name: "Journal", id: "blog" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Contact", href: "#contact" }}
animateOnLoad={true}
@@ -317,7 +317,7 @@ export default function LandingPage() {
{ label: "Collection", href: "#products" },
{ label: "About", href: "#about" },
{ label: "Approach", href: "#approach" },
{ label: "Journal", href: "#blog" },
{ label: "Contact", href: "#contact" },
],
},
{