Merge version_6 into main
Merge version_6 into main
This commit was merged in pull request #5.
This commit is contained in:
@@ -4,13 +4,13 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
--background: #fffcfa;;
|
--background: #f8f5f1;
|
||||||
--card: #fffaf7;;
|
--card: #f1ebe8;
|
||||||
--foreground: #220a00;;
|
--foreground: #3d2417;
|
||||||
--primary-cta: #e8590c;;
|
--primary-cta: #d4704c;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #ffffff;
|
||||||
--accent: #ff8c42;;
|
--accent: #e8a88f;
|
||||||
--background-accent: #e8590c;;
|
--background-accent: #d9a18f;
|
||||||
|
|
||||||
/* 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);
|
||||||
@@ -495,7 +495,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-work-sans), sans-serif;
|
font-family: var(--font-cormorant-garamond), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -508,5 +508,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-work-sans), sans-serif;
|
font-family: var(--font-cormorant-garamond), sans-serif;
|
||||||
}
|
}
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Work_Sans } from "next/font/google";
|
import { Cormorant_Garamond } 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 workSans = Work_Sans({
|
const cormorantGaramond = Cormorant_Garamond({
|
||||||
variable: "--font-work-sans",
|
variable: "--font-cormorant-garamond",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -39,7 +40,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${workSans.variable} antialiased`}
|
className={`${cormorantGaramond.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="large"
|
contentWidth="large"
|
||||||
sizing="largeSizeExtraLargeSpacing"
|
sizing="largeSizeExtraLargeSpacing"
|
||||||
background="dotGrid"
|
background="aurora"
|
||||||
cardStyle="shadow-colored"
|
cardStyle="shadow-colored"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
|
|||||||
Reference in New Issue
Block a user