Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-07 16:59:49 +00:00
2 changed files with 16 additions and 50 deletions

View File

@@ -1,53 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
import "./styles/variables.css";
import "./styles/base.css";
export const metadata: Metadata = {
title: "Outset Barbershop | Premium Grooming & Haircuts", description: "Expert barbershop services including precision haircuts, beard grooming, and styling. Book your appointment with our master barbers today.", keywords: "barbershop, haircuts, beard grooming, barber, men's grooming, fade, styling", metadataBase: new URL("https://outset-barbershop.com"),
alternates: {
canonical: "https://outset-barbershop.com"
},
openGraph: {
title: "Outset Barbershop | Premium Grooming", description: "Experience premium barbershop services with expert barbers specializing in precision cuts and grooming.", url: "https://outset-barbershop.com", siteName: "Outset Barbershop", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/funny-little-boy-is-getting-trendy-haircut-from-expirienced-barber-fashionable-hairdressing-salon-firs-time_613910-21469.jpg", alt: "Outset Barbershop Interior"
}
]
},
twitter: {
card: "summary_large_image", title: "Outset Barbershop | Premium Grooming", description: "Expert haircuts and beard grooming services", images: ["http://img.b2bpic.net/free-photo/funny-little-boy-is-getting-trendy-haircut-from-expirienced-barber-fashionable-hairdressing-salon-firs-time_613910-21469.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Revv Barbers", description: "Premium grooming experience with precision cuts and expert styling"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className="bg-[var(--background)] text-[var(--foreground)]">
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -27,7 +27,7 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Outset"
brandName="Revv Barbers"
navItems={[
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
@@ -94,7 +94,7 @@ export default function LandingPage() {
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by Hundreds of Satisfied Clients"
description="Join our growing community of grooming enthusiasts who trust Outset for their personal style"
description="Join our growing community of grooming enthusiasts who trust Revv Barbers for their personal style"
tag="Community"
names={[
"Local Community Members", "Corporate Clients", "Event Organizers", "Wedding Parties", "Fashion Forward Individuals", "Professional Athletes", "Business Executives", "Lifestyle Enthusiasts"
@@ -145,13 +145,13 @@ export default function LandingPage() {
tag="Reviews"
testimonials={[
{
id: "1", name: "Robert Martinez", role: "Business Owner", testimonial: "Outset has become my go-to barbershop. The precision and attention to detail are exceptional. Always leaves me looking sharp.", imageSrc: "http://img.b2bpic.net/free-photo/barber-drying-hair-unrecognizable-man_23-2147778789.jpg", imageAlt: "Robert Martinez testimonial"
id: "1", name: "Robert Martinez", role: "Business Owner", testimonial: "Revv Barbers has become my go-to barbershop. The precision and attention to detail are exceptional. Always leaves me looking sharp.", imageSrc: "http://img.b2bpic.net/free-photo/barber-drying-hair-unrecognizable-man_23-2147778789.jpg", imageAlt: "Robert Martinez testimonial"
},
{
id: "2", name: "Alex Thompson", role: "Marketing Professional", testimonial: "Best barbershop experience I've had. Marcus really understands my style preferences and delivers consistently.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-plus-size-man-working-as-hairstylist_23-2150754700.jpg", imageAlt: "Alex Thompson testimonial"
},
{
id: "3", name: "Kevin Williams", role: "Software Developer", testimonial: "Great service, friendly staff, and the wait time is minimal. Highly recommend Outset to anyone looking for quality grooming.", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-preparing-customers-hair-haircut_23-2148181947.jpg", imageAlt: "Kevin Williams testimonial"
id: "3", name: "Kevin Williams", role: "Software Developer", testimonial: "Great service, friendly staff, and the wait time is minimal. Highly recommend Revv Barbers to anyone looking for quality grooming.", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-preparing-customers-hair-haircut_23-2148181947.jpg", imageAlt: "Kevin Williams testimonial"
},
{
id: "4", name: "Jason Lee", role: "Entrepreneur", testimonial: "The level of craftsmanship here is unmatched. Every visit feels like a premium experience. Worth every penny.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg", imageAlt: "Jason Lee testimonial"
@@ -201,9 +201,9 @@ export default function LandingPage() {
]
}
]}
copyrightText="© 2025 Outset Barbershop. All rights reserved."
copyrightText="© 2025 Revv Barbers. All rights reserved."
/>
</div>
</ThemeProvider>
);
}
}