3 Commits

Author SHA1 Message Date
b05c6a75bb Update src/app/page.tsx 2026-03-04 20:39:07 +00:00
1d3eb8ac6a Update src/app/layout.tsx 2026-03-04 20:39:07 +00:00
f5e01a8e39 Merge version_5 into main
Merge version_5 into main
2026-03-04 20:31:23 +00:00
2 changed files with 7 additions and 7 deletions

View File

@@ -1,13 +1,14 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Belle Precisions - Permanent Makeup Hot Springs", description: "Professional permanent eyeliner enhancement in Hot Springs, AR. 5-star rated, women-owned clinic specializing in precision beauty services."};
title: "Belle Precisions - Permanent Makeup in Hot Springs, AR", description: "Professional permanent eyeliner enhancement and cosmetic makeup services in Hot Springs, Arkansas. 5-star rated, women-owned clinic specializing in precision beauty treatments."};
export default function RootLayout({
children,
@@ -16,7 +17,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={dmSans.variable}>{children}
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -110,8 +110,7 @@ export default function LandingPage() {
description="Precision cosmetic enhancements designed to enhance your natural beauty and save you time every morning"
features={[
{
id: "consultation", title: "Consultation Services", description: "Personalized consultation to discuss your goals, concerns, and what to expect. We prioritize making nervous clients feel at ease.", tag: "Personalized", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUfZ6EApIqxNnaHGb7WnzEObqO/uploaded-1772652899819-6tpq87ta.png", imageAlt: "Professional consultation service", buttons: [{ text: "Learn More", href: "tel:(501)359-2175" }],
},
id: "consultation", title: "Consultation Services", description: "Personalized consultation to discuss your goals, concerns, and what to expect. We prioritize making nervous clients feel at ease.", tag: "Personalized", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUfZ6EApIqxNnaHGb7WnzEObqO/uploaded-1772652899819-6tpq87ta.png", imageAlt: "Professional consultation service"},
{
id: "eyeliner", title: "Permanent Eyeliner Enhancement", description: "Expert permanent eyeliner application that's smudge-proof, water-resistant, and perfectly even. Wake up confident every single day.", tag: "Most Popular", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUfZ6EApIqxNnaHGb7WnzEObqO/uploaded-1772653517011-6grnxoqm.png", imageAlt: "Permanent eyeliner enhancement procedure", buttons: [{ text: "Book Now", href: "https://belleprecisions.square.site" }],
},