6 Commits

Author SHA1 Message Date
340f68f395 Update src/app/page.tsx 2026-04-15 00:30:37 +00:00
a271c78270 Update theme fonts 2026-04-15 00:29:12 +00:00
c45d80b62e Update theme fonts 2026-04-15 00:29:12 +00:00
4df4af26b7 Update src/app/page.tsx 2026-04-15 00:28:06 +00:00
c9f509f8d7 Update src/app/page.tsx 2026-04-15 00:26:58 +00:00
43743f361c Merge version_3 into main
Merge version_3 into main
2026-04-15 00:02:25 +00:00
3 changed files with 21 additions and 15 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -21,8 +22,13 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -34,7 +40,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -49,22 +49,22 @@ export default function LandingPage() {
description="Corta Letras brings you unique, handmade wooden creations. From artisanal port vines to bespoke home decor, we transform raw wood into timeless art."
testimonials={[
{
name: "Elena R.", handle: "@elena_deco", testimonial: "The wood quality is breathtaking. A true piece of art.", rating: 5,
name: "", handle: "@elena_deco", testimonial: "The wood quality is breathtaking. A true piece of art.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/wooden-warm-texture_1194-8936.jpg?_wi=1", imageAlt: "handmade wood crafts workshop warm light"},
{
name: "Marco S.", handle: "@marco_home", testimonial: "Exquisite handmade detail, perfect addition to my home.", rating: 5,
name: "", handle: "@marco_home", testimonial: "Exddition to my home.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-woodworking-tools_23-2148428271.jpg", imageAlt: "handmade wood crafts workshop warm light"},
{
name: "Sofia L.", handle: "@sofia_design", testimonial: "Fast shipping and even better in person!", rating: 5,
name: "", handle: "@sofia_design", testimonial: "n!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/still-life-details-interior_169016-3422.jpg?_wi=1", imageAlt: "handmade wood crafts workshop warm light"},
{
name: "Javier M.", handle: "@javier_craft", testimonial: "Pure craftsmanship, highly recommend Corta Letras.", rating: 5,
name: "Javir M.", handle: "@javier_craft", testimonial: "hip, highly recommend Corta Letras.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/analog-portrait-beautiful-woman-posing-indoors-chair_23-2149630209.jpg?_wi=1", imageAlt: "handmade wood crafts workshop warm light"},
{
name: "Ana G.", handle: "@ana_nature", testimonial: "The texture and finish are simply unparalleled.", rating: 5,
name: "", handle: "@ana_nature", testimonial: "", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/pretty-photographer-woman-beach-vacation-lifestyle-concept_53876-23025.jpg?_wi=1", imageAlt: "handmade wood crafts workshop warm light"},
]}
imageSrc="http://img.b2bpic.net/free-photo/wooden-warm-texture_1194-8936.jpg?_wi=2"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CN13Rbpt54cMl8w03bACXLDDVQ/uploaded-1776212785368-d4b6bi9m.png"
imageAlt="Handmade wooden art piece detail"
avatars={[
{
@@ -144,8 +144,8 @@ export default function LandingPage() {
{
value: "11yrs", label: "Artisan Experience"},
]}
title="Treasured by Our Community"
description="See what our happy customers have to say about their handmade wood pieces."
title=""
description=""
/>
</div>
@@ -154,8 +154,8 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{
variant: "gradient-bars"}}
tag="Let's Connect"
title="Start Your Custom Project"
tag=""
title=""
description="Ready to bring a handmade touch into your space? Reach out to us today for quotes and inquiries."
buttonText="Request a Quote"
termsText="By clicking Request a Quote you're confirming that you agree with our Terms and Conditions."

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-raleway), sans-serif;
font-family: var(--font-open-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-raleway), sans-serif;
font-family: var(--font-inter), sans-serif;
}