Compare commits
19 Commits
version_1
...
version_17
| Author | SHA1 | Date | |
|---|---|---|---|
| c3fc3f2375 | |||
| d254e9fe4f | |||
| 2e4c6e4e45 | |||
| 6fe673e621 | |||
| 8ca70d3e9b | |||
| 0f28487e76 | |||
| ea23ba8ccd | |||
| 4f8e5c32ed | |||
| 131aa82cff | |||
| 64a3075b41 | |||
| 37d00deca4 | |||
| 344cf20bd6 | |||
| 9e4c41a1bb | |||
| 03ae5f8ddc | |||
| dfed9a00f6 | |||
| de94a16ff8 | |||
| 32b3c22d94 | |||
| 7af6413306 | |||
| 6813e03eb4 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Lato } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -40,10 +41,10 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato",
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -54,7 +55,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -232,7 +232,7 @@ export default function LandingPage() {
|
||||
name: "Whispers of the Forest",
|
||||
price: "$1,200",
|
||||
variant: "Original Oil Painting",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/drawing-flowers-inside-frame-wall_53876-23289.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EjBvVauf3jyjTL11cMkZ8QIIJV/uploaded-1780683158102-pyk4jqx0.jpg",
|
||||
imageAlt: "Abstract forest landscape painting",
|
||||
},
|
||||
{
|
||||
@@ -240,7 +240,7 @@ export default function LandingPage() {
|
||||
name: "River Stone Sculpture",
|
||||
price: "$450",
|
||||
variant: "Handcrafted Ceramic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-ceramic-empty-plates-bowls_114579-21176.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EjBvVauf3jyjTL11cMkZ8QIIJV/uploaded-1780683518636-zihl7w6w.jpg",
|
||||
imageAlt: "Smooth ceramic sculpture resembling river stones",
|
||||
},
|
||||
{
|
||||
@@ -248,7 +248,7 @@ export default function LandingPage() {
|
||||
name: "Botanical Serenity Print",
|
||||
price: "$180",
|
||||
variant: "Limited Edition Giclée",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bloom-summer-flowers-pink-spring_1203-3809.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EjBvVauf3jyjTL11cMkZ8QIIJV/uploaded-1780683563161-w0lvq0zz.jpg",
|
||||
imageAlt: "Detailed botanical illustration art print",
|
||||
},
|
||||
{
|
||||
@@ -256,7 +256,7 @@ export default function LandingPage() {
|
||||
name: "Coastal Echoes Abstract",
|
||||
price: "$850",
|
||||
variant: "Resin & Mixed Media",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-background-with-brush-strokes_23-2147611911.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EjBvVauf3jyjTL11cMkZ8QIIJV/uploaded-1780683680304-ci738jxh.jpg",
|
||||
imageAlt: "Abstract resin art with blue and green tones",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-lato), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-lato), sans-serif;
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f7f6f7;
|
||||
--card: #ffffff;
|
||||
--foreground: #0c1325;
|
||||
--primary-cta: #0798ff;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #0c1325;
|
||||
--accent: #93c7ff;
|
||||
--background-accent: #a8cde8;
|
||||
--background: #f6e8ce;
|
||||
--card: #0e2a0c;
|
||||
--foreground: #0E2A0C;
|
||||
--primary-cta: #0E2A0C;
|
||||
--primary-cta-text: #F6E8CE;
|
||||
--secondary-cta: #9A460E;
|
||||
--secondary-cta-text: #F6E8CE;
|
||||
--accent: #9a460e;
|
||||
--background-accent: #9A460E;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user