Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 23:34:26 +00:00
2 changed files with 10 additions and 44 deletions

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Archivo } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Luxe Nails - Premium Nail Care & Design Services", description: "Experience luxury nail care at Luxe Nails. Expert technicians, premium treatments, and stunning designs. Book your appointment today.", keywords: "nail salon, manicure, pedicure, gel nails, acrylic nails, nail art, beauty", openGraph: {
title: "Luxe Nails - Premium Nail Salon", description: "Elevate your nail beauty with our expert technicians and premium services.", type: "website", url: "https://luxenails.com", siteName: "Luxe Nails", images: [
{
url: "http://img.b2bpic.net/free-photo/manicure-process_1385-276.jpg", alt: "Luxe Nails - Premium nail care"},
],
},
twitter: {
card: "summary_large_image", title: "Luxe Nails - Premium Nail Salon", description: "Experience luxury nail care with expert technicians.", images: ["http://img.b2bpic.net/free-photo/manicure-process_1385-276.jpg"],
},
};
title: "Luxe Nails - Premium Nail Salon", description: "Experience luxurious nail care with expert technicians at Luxe Nails. Premium treatments, stunning designs, and impeccable service."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${archivo.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -51,19 +51,16 @@ export default function LandingPage() {
imageAlt="Beautiful nail art showcase"
imagePosition="right"
buttons={[
{ text: "Book Appointment", href: "#contact" },
{ text: "Book Your Appointment Now", href: "#contact" },
{ text: "View Services", href: "#services" },
]}
buttonAnimation="slide-up"
testimonials={[
{
name: "Sarah Mitchell", handle: "Client", testimonial: "The best nail salon I've ever been to! Amazing service and beautiful results.", rating: 5,
{ name: "Sarah Mitchell", handle: "Client", testimonial: "The best nail salon I've ever been to! Amazing service and beautiful results.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-attractive-woman-showing-thumb-up-outdoors_1262-12526.jpg?_wi=1"},
{
name: "Emily Johnson", handle: "Client", testimonial: "Highly skilled technicians with attention to detail. Highly recommend!", rating: 5,
{ name: "Emily Johnson", handle: "Client", testimonial: "Highly skilled technicians with attention to detail. Highly recommend!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg?_wi=1"},
{
name: "Lisa Chen", handle: "Client", testimonial: "My go-to place for all my nail needs. Consistently excellent.", rating: 5,
{ name: "Lisa Chen", handle: "Client", testimonial: "My go-to place for all my nail needs. Consistently excellent.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-attractive-woman-showing-thumb-up-outdoors_1262-12526.jpg?_wi=2"},
]}
testimonialRotationInterval={5000}