Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 759aac567a | |||
| 8133d04c16 | |||
| 4bc117e19c | |||
| 41b3af69b4 | |||
| 06cba6e606 | |||
| 6d8c993caf | |||
| 18400dbe25 | |||
| 1a1be45d1a | |||
| 95f5a47371 | |||
| 62e1a9577f | |||
| 9c0f6319c1 | |||
| 39cf01a178 |
@@ -54,7 +54,8 @@ export default function BlogPage() {
|
|||||||
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
||||||
const response = await fetch(url, {
|
const response = await fetch(url, {
|
||||||
method: "GET", headers: {
|
method: "GET", headers: {
|
||||||
"Content-Type": "application/json"},
|
"Content-Type": "application/json"
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
|
|||||||
@@ -4,21 +4,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #fef5f0;;
|
||||||
--card: #ffffff;;
|
--card: #fde8dd;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #3d2817;;
|
||||||
--primary-cta: #1f514c;;
|
--primary-cta: #d97c63;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #159c49;;
|
--accent: #f4a574;;
|
||||||
--background-accent: #a8e8ba;; */
|
--background-accent: #e8a8a0;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #fef5f0;;
|
||||||
--card: #ffffff;;
|
--card: #fde8dd;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #3d2817;;
|
||||||
--primary-cta: #1f514c;;
|
--primary-cta: #d97c63;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #159c49;;
|
--accent: #f4a574;;
|
||||||
--background-accent: #a8e8ba;;
|
--background-accent: #e8a8a0;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
@@ -578,7 +578,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-cormorant-garamond), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -591,5 +591,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-cormorant-garamond), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,11 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Cormorant_Garamond } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const cormorantGaramond = Cormorant_Garamond({
|
const inter = Inter({
|
||||||
variable: "--font-cormorant-garamond", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -31,7 +30,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={cormorantGaramond.variable}
|
className={inter.variable}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||||
@@ -168,6 +168,9 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", value: "100%", title: "Quality Assurance", description: "Every frame passes rigorous quality control", imageSrc: "https://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65196.jpg", imageAlt: "Quality inspection process"
|
id: "2", value: "100%", title: "Quality Assurance", description: "Every frame passes rigorous quality control", imageSrc: "https://img.b2bpic.net/free-photo/craftswoman-working-workshop_107420-65196.jpg", imageAlt: "Quality inspection process"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", value: "98%", title: "Satisfaction Rate", description: "Customer approval rating across all collections", imageSrc: "https://img.b2bpic.net/free-photo/closeup-young-female-professional-making-eye-contact-against-colored-background_662251-651.jpg", imageAlt: "Satisfied customer testimonial"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user