Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e3184d6e13 | |||
| 08fd7ffac3 | |||
| d4d701a19c | |||
| 1d797f3f6a | |||
| b0a02d0ab8 | |||
| 6e5f5e2f2e | |||
| 1ecd1fd1de | |||
| 34d8f35f33 | |||
| a3ba3df233 | |||
| 875ce0d191 | |||
| e9e9844870 |
@@ -1,29 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Halant } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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 +30,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
className={`${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -16,14 +16,14 @@ export default function LandingPage() {
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="aurora"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
background="none"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-sf-pro-display), 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-sf-pro-display), sans-serif;
|
||||
}
|
||||
|
||||
@@ -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: #ffffffe6;;
|
||||
--primary-cta: #ffffff;;
|
||||
--secondary-cta: #1a1a1a;;
|
||||
--accent: #404040;;
|
||||
--background-accent: #ffffff;; */
|
||||
|
||||
--background: #e3deea;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #27231f;;
|
||||
--primary-cta: #27231f;;
|
||||
--background: #0a0a0a;;
|
||||
--card: #1a1a1a;;
|
||||
--foreground: #ffffffe6;;
|
||||
--primary-cta: #ffffff;;
|
||||
--primary-cta-text: #e3deea;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #1a1a1a;;
|
||||
--secondary-cta-text: #27231f;;
|
||||
--accent: #c68a62;;
|
||||
--background-accent: #c68a62;;
|
||||
--accent: #404040;;
|
||||
--background-accent: #ffffff;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user