Pixel-identical port of the React marketing site: Tailwind config, HSL theme tokens, fonts (Plus Jakarta Sans / Space Grotesk) and custom utilities copied verbatim; shadcn-vue (reka-ui) components; all 33 routes ported. Served at www.gigafibre.ca/next (noindex) behind nginx, ahead of replacing the React site. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
13 lines
278 B
Vue
13 lines
278 B
Vue
<script lang="ts" setup>
|
|
import type { CalendarGridHeadProps } from "reka-ui"
|
|
import { CalendarGridHead } from "reka-ui"
|
|
|
|
const props = defineProps<CalendarGridHeadProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<CalendarGridHead v-bind="props">
|
|
<slot />
|
|
</CalendarGridHead>
|
|
</template>
|