Archived
build-and-publish / build (push) Successful in 1m14s
- .container back in @layer components so Tailwind's px-4 still wins; unlayered it had quietly widened the gutter on every page - shadow-sm -> shadow-xs: Tailwind v4 renamed the scale, so the ported markup was giving every white card a heavier shadow than the live site - route changes jump to the top again instead of smooth-scrolling - preload the wordmark font and the hero image Co-Authored-By: Claude Opus 4.8 <[email protected]> Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
30 lines
1.9 KiB
HTML
30 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" media="(prefers-color-scheme: light)" href="/images/resources/logo_L.png">
|
|
<link rel="icon" media="(prefers-color-scheme: dark)" href="/images/resources/logo_dark.png">
|
|
<!-- Preconnect to the photo bucket so product images start loading a round-trip sooner. -->
|
|
<link rel="preconnect" href="https://s3.thebennett.net" crossorigin>
|
|
<!-- The wordmark is set in these; without preloading they arrive late and the logo visibly reflows. -->
|
|
<link rel="preload" as="font" type="font/woff2" href="/src/fonts/raleway-latin.woff2" crossorigin>
|
|
<link rel="preload" as="image" href="https://s3.thebennett.net/itsthevine/images/gallery/Outside.webp" fetchpriority="high">
|
|
<!-- PageMetaController rewrites the title and the four meta tags below per route, so crawlers and
|
|
link-preview scrapers get real per-page metadata instead of one generic shell. Keep the
|
|
attribute order and quoting as-is — it matches on them. -->
|
|
<title>The Vine Coffeehouse + Bakery</title>
|
|
<meta name="description" content="A locally owned coffeehouse and bakery in downtown Princeville, Illinois. We bake pastries, custom cakes, cookies, and cinnamon rolls, and serve sandwiches, paninis, and coffee.">
|
|
<meta property="og:title" content="The Vine Coffeehouse + Bakery">
|
|
<meta property="og:description" content="A locally owned coffeehouse and bakery in downtown Princeville, IL.">
|
|
<meta property="og:url" content="https://itsthevine.com">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:locale" content="en_US">
|
|
<meta name="keywords" content="bakery, coffeehouse, pastries, custom cakes, cinnamon rolls, paninis, Princeville IL">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|