3 Commits

Author SHA1 Message Date
a3ba3df233 Update src/app/styles/variables.css 2026-03-03 18:10:40 +00:00
875ce0d191 Update src/app/styles/base.css 2026-03-03 18:10:39 +00:00
e9e9844870 Update src/app/layout.tsx 2026-03-03 18:10:38 +00:00
3 changed files with 24 additions and 28 deletions

View File

@@ -1,18 +1,12 @@
import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Halant } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
@@ -21,9 +15,11 @@ const inter = Inter({
export const metadata: Metadata = {
title: "Marcus Cole | Film Composer & Music Producer", description: "Award-winning film score composer, music producer, and creative media designer. Elevate your projects with original compositions, sound design, and multimedia expertise.", keywords: "film composer, music producer, film score, sound design, web designer, media designer, creative services", openGraph: {
title: "Marcus Cole | Film Composer & Music Producer", description: "Award-winning film score composer, music producer, and creative media designer. Elevate your projects with original compositions and multimedia expertise.", siteName: "Marcus Cole", type: "website"},
title: "Marcus Cole | Film Composer & Music Producer", description: "Award-winning film score composer, music producer, and creative media designer. Elevate your projects with original compositions and multimedia expertise.", siteName: "Marcus Cole", type: "website"
},
twitter: {
card: "summary_large_image", title: "Marcus Cole | Film Composer & Music Producer", description: "Award-winning film score composer, music producer, and creative media designer."},
card: "summary_large_image", title: "Marcus Cole | Film Composer & Music Producer", description: "Award-winning film score composer, music producer, and creative media designer."
},
robots: {
index: true,
follow: true,
@@ -39,7 +35,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${montserrat.variable} ${halant.variable} ${inter.variable} antialiased`}
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-montserrat), 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-montserrat), sans-serif;
font-family: var(--font-dm-sans), sans-serif;
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #e3deea;;
--card: #ffffff;;
--foreground: #27231f;;
--primary-cta: #27231f;;
--secondary-cta: #ffffff;;
--accent: #c68a62;;
--background-accent: #c68a62;; */
/* --background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #ffffff;;
--primary-cta: #ffffff;;
--secondary-cta: #1a1a1a;;
--accent: #a0a0a0;;
--background-accent: #ffffff;; */
--background: #e3deea;;
--card: #ffffff;;
--foreground: #27231f;;
--primary-cta: #27231f;;
--background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #ffffff;;
--primary-cta: #ffffff;;
--primary-cta-text: #e3deea;;
--secondary-cta: #ffffff;;
--secondary-cta: #1a1a1a;;
--secondary-cta-text: #27231f;;
--accent: #c68a62;;
--background-accent: #c68a62;;
--accent: #a0a0a0;;
--background-accent: #ffffff;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);