21 Commits

Author SHA1 Message Date
bc7b59ae0d Switch to version 7: modified src/app/page.tsx 2026-05-07 13:05:04 +00:00
d14ad58df9 Merge version_8 into main
Merge version_8 into main
2026-05-07 13:04:36 +00:00
f7c40ed9f3 Update src/app/page.tsx 2026-05-07 13:04:29 +00:00
0eac90aeb6 Merge version_7 into main
Merge version_7 into main
2026-05-07 13:03:13 +00:00
f39448ba6c Update theme fonts 2026-05-07 13:03:09 +00:00
bdebb6ea45 Update theme fonts 2026-05-07 13:03:09 +00:00
9b865d5cca Merge version_7 into main
Merge version_7 into main
2026-05-07 13:02:58 +00:00
acb4a0d05a Update theme fonts 2026-05-07 13:02:55 +00:00
10a017ede9 Update theme fonts 2026-05-07 13:02:54 +00:00
3d520e5b7e Merge version_7 into main
Merge version_7 into main
2026-05-07 13:02:36 +00:00
277205f8bd Update theme fonts 2026-05-07 13:02:33 +00:00
8bc359e7dd Update theme fonts 2026-05-07 13:02:32 +00:00
2c312a2959 Merge version_7 into main
Merge version_7 into main
2026-05-07 13:02:15 +00:00
24bd56528b Update theme colors 2026-05-07 13:02:12 +00:00
321663d641 Merge version_6 into main
Merge version_6 into main
2026-05-07 13:01:12 +00:00
126977a465 Update theme colors 2026-05-07 13:01:06 +00:00
8aaf0f70af Merge version_5 into main
Merge version_5 into main
2026-05-07 13:00:44 +00:00
0921f93bb2 Update theme colors 2026-05-07 13:00:40 +00:00
92382d2582 Merge version_4 into main
Merge version_4 into main
2026-05-07 12:59:02 +00:00
a7dc5a3985 Merge version_3 into main
Merge version_3 into main
2026-05-07 12:58:51 +00:00
17833923e8 Merge version_2 into main
Merge version_2 into main
2026-05-07 12:58:13 +00:00
3 changed files with 15 additions and 16 deletions

View File

@@ -6,20 +6,21 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
import { Raleway } from "next/font/google";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = { title: 'ZYNOR | Sistemas de Controlo Comercial', description: 'Damos-te controlo total sobre as tuas vendas e operação. Sistemas, processos e execução para um crescimento sustentável.' };
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -28,9 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -12,8 +12,8 @@
--background: #030723;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--foreground: #fefefe;
--primary-cta: #70BBE7;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;