diff --git a/app/globals.css b/app/globals.css index de460ea..f122b45 100644 --- a/app/globals.css +++ b/app/globals.css @@ -10,11 +10,8 @@ } } -html, -body { -} - body { + padding-inline: 1rem; color: var(--foreground); background: var(--background); font-family: Arial, Helvetica, sans-serif; @@ -32,9 +29,8 @@ ul, ol { padding-inline-start: 1.5rem; } -a { - color: inherit; - text-decoration: none; +h1, h2, h3, h4 { + margin-block: 0.75em 0.25em; } @media (prefers-color-scheme: dark) { @@ -42,3 +38,17 @@ a { color-scheme: dark; } } + +a { + text-decoration: none; +} + +/* Enable hover only on non-touch devices */ +@media (hover: hover) and (pointer: fine) { + a:hover { + color: color-mix(in oklab, var(--foreground), blue 50%); + text-decoration: underline; + text-underline-offset: 2px; + border-color: transparent; + } +} diff --git a/app/layout.tsx b/app/layout.tsx index 742d4a9..b55f175 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,17 +1,6 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); - export const metadata: Metadata = { title: "Create Next App", description: "Generated by create next app", @@ -24,7 +13,7 @@ export default function RootLayout({ }>) { return ( - + {children} diff --git a/app/page.tsx b/app/page.tsx index 2a23a39..71f3c8a 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,95 +1,14 @@ import Image from "next/image"; import styles from "./page.module.css"; +import Link from "next/link"; export default function Home() { - return ( -
-
- Next.js logo -
    -
  1. - Get started by editing app/page.tsx. -
  2. -
  3. Save and see your changes instantly.
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- -
- ); + return
+

Schedule demo

+ +
; } diff --git a/app/schedule/page.module.css b/app/schedule/page.module.css index 95746c0..2bc9d7b 100644 --- a/app/schedule/page.module.css +++ b/app/schedule/page.module.css @@ -1,10 +1,3 @@ -.schedule { - padding-inline: 1rem; -} -.schedule :is(h1, h2, h3, h4) { - margin-block: 0.75em 0.25em; -} - .event { background: color-mix(in oklab, var(--background), grey 20%); padding: 0.5rem; diff --git a/public/file.svg b/public/file.svg deleted file mode 100644 index 004145c..0000000 --- a/public/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/globe.svg b/public/globe.svg deleted file mode 100644 index 567f17b..0000000 --- a/public/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index 7705396..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/window.svg b/public/window.svg deleted file mode 100644 index b2b2a44..0000000 --- a/public/window.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file