4 Commits

Author SHA1 Message Date
af4cc6e95d Update src/app/styles/variables.css 2026-03-04 18:18:56 +00:00
76a3a19741 Update src/app/styles/base.css 2026-03-04 18:18:55 +00:00
540804a18a Update src/app/layout.tsx 2026-03-04 18:18:55 +00:00
ec8c0031b6 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:15:28 +00:00
3 changed files with 10 additions and 23 deletions

View File

@@ -1,24 +1,13 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Mediame - Social Media Marketing Agency", description: "Transform your brand's social presence with strategic campaigns, creative content, and data-driven results. Trusted by leading brands.", keywords: "social media marketing, social media agency, digital marketing, content creation, social media strategy, paid advertising", robots: {
index: true,
@@ -43,9 +32,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f4f0;
--card: #ffffff;
--foreground: #1a1a1a;
--primary-cta: #2c2c2c;
--background: #ffffff;
--card: #f0f7ff;
--foreground: #001a4d;
--primary-cta: #0052cc;
--primary-cta-text: #f5f4f0;
--secondary-cta: #f5f4f0;
--secondary-cta: #e6f0ff;
--secondary-cta-text: #1a1a1a;
--accent: #8a8a8a;
--background-accent: #e8e6e1;
--accent: #0052cc;
--background-accent: #cce5ff;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);