diff --git a/public/kia.svg b/public/kia.svg new file mode 100644 index 0000000..05c8940 --- /dev/null +++ b/public/kia.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/app/globals.css b/src/app/globals.css index 1394028..cbfd911 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,16 +1,23 @@ @import "tailwindcss"; -:root { - --background: #ffffff; - --primary: #05141f; - --max-width: 1660px; +@layer base { + :root { + --background: #ffffff; + --primary: #05141f; + --max-width: 1660px; + } } -@theme inline { +@theme { --font-sans: var(--font-geist-sans); --font-mono: var(--font-geist-mono); - --color-background: var(--background); + --color-primary: var(--primary); + + --color-background: var(--background); + --color-footer-background: var(--primary); + + --breakpoint-md: 46.5rem; } @layer base { @@ -27,6 +34,11 @@ textarea { @apply text-primary; } + address, + i, + em { + @apply not-italic; + } } @layer utilities { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3878f9d..c227bc0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,8 +2,9 @@ import type { Metadata } from 'next'; import { Geist, Geist_Mono } from 'next/font/google'; import './globals.css'; import { cn } from '@/shared/utils/cn'; -import { meta } from '@/shared/constants/meta'; +import { meta } from '@/shared/data/meta'; import { Header } from '@/widgets/header'; +import { Footer } from '@/widgets/footer'; const geistSans = Geist({ variable: '--font-geist-sans', @@ -27,6 +28,7 @@ export default function RootLayout({
{children} +