Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-10 09:26:16 +00:00
2 changed files with 19 additions and 29 deletions

View File

@@ -1,41 +1,32 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import './globals.css';
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 openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: '--font-geist-mono',
subsets: ['latin'],
});
export const metadata: Metadata = {
title: "Towelly - Disposable Body Towels for Gyms, Beaches & Travel", description: "Stop carrying wet towels. Single-use disposable body towels for gyms, beaches, and travel. Dry, clean, and ready to go. First sales launch with simple pricing and consignment options."};
title: 'Towelly - Disposable Body Towels',
description: 'Premium single-use disposable body towels for gyms, beaches, and travel.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1403,7 +1394,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -42,7 +42,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="Stop Carrying Wet Towels"
description="Single-use disposable body towels for gyms, beaches, and travel. Dry, clean, and ready to go."
description="Earn $0.60 profit per towel sold with Towelly. Single-use disposable body towels for gyms, beaches, and travel—solving the towel problem instantly. Dry, clean, and ready to go. Launch now and capture demand before competition arrives."
tag="First Sales Launch"
tagIcon={Zap}
tagAnimation="slide-up"