5 Commits

Author SHA1 Message Date
be9f8cfb76 Update src/app/styles/variables.css 2026-06-13 07:05:14 +00:00
41b4391467 Update src/app/styles/base.css 2026-06-13 07:05:13 +00:00
4e26cdc75a Update src/app/page.tsx 2026-06-13 07:05:13 +00:00
ce63aca511 Update src/app/layout.tsx 2026-06-13 07:05:13 +00:00
e63fbe80a1 Merge version_1 into main
Merge version_1 into main
2026-06-13 07:03:15 +00:00
4 changed files with 20 additions and 16 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google"; import { Nunito } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -41,9 +42,12 @@ export const metadata: Metadata = {
}, },
}; };
const nunito = Nunito({
variable: "--font-nunito", const dmSans = DM_Sans({
subsets: ["latin"], variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -54,7 +58,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${nunito.variable} antialiased`}> <body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -48,7 +48,7 @@ export default function LandingPage() {
]} ]}
brandName="WhatsApp Wallet" brandName="WhatsApp Wallet"
button={{ button={{
text: "Start Your Wallet", href: "#contact"}} text: "Start Your Wallet", href: "#contact"}}
/> />
</div> </div>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-nunito), 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;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-nunito), sans-serif; font-family: var(--font-dm-sans), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #000000; --background: #020617;
--card: #0c0c0c; --card: #0f172a;
--foreground: #ffffff; --foreground: #e2e8f0;
--primary-cta: #cee7ff; --primary-cta: #c4d8f9;
--primary-cta-text: #000000; --primary-cta-text: #020617;
--secondary-cta: #000000; --secondary-cta: #041633;
--secondary-cta-text: #ffffff; --secondary-cta-text: #e2e8f0;
--accent: #535353; --accent: #2d30f3;
--background-accent: #CEE7FF; --background-accent: #1d4ed8;
/* 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);