Readying for design

This commit is contained in:
Jennie Robinson Faber 2026-03-04 18:24:20 +00:00
parent d73256ca2b
commit fadf473dde
50 changed files with 1478 additions and 1259 deletions

View file

@ -1,105 +1,60 @@
<template>
<header
class="relative py-16 md:py-24 bg-cover bg-center"
style="background-image: url(&quot;/background-dither.png&quot;)"
style="background-image: url('/background-dither.webp')"
>
<div class="absolute inset-0 bg-black/40"></div>
<UContainer class="relative z-10">
<div class="text-center max-w-4xl mx-auto">
<h1
class="font-bold mb-6 md:mb-8"
:class="[titleSizeClass, titleColorClass]"
class="font-bold mb-6 md:mb-8 text-white"
:class="titleSizeClass"
>
{{ title }}
</h1>
<p
v-if="subtitle"
class="text-lg md:text-xl leading-relaxed mb-8"
:class="subtitleColorClass"
class="text-lg md:text-xl leading-relaxed mb-8 text-white/90"
>
{{ subtitle }}
</p>
<!-- Interactive Content Area (for hero sections with carousels, etc.) -->
<!-- Interactive Content Area (for hero sections with carousels) -->
<div
v-if="showInteractiveArea"
:class="[
'rounded-2xl p-6 md:p-8 mb-12 backdrop-blur-sm',
props.theme === 'guild'
? 'bg-guild-800/60 border border-guild-700 candlelight-glow halftone-texture'
: 'bg-[--ui-bg-elevated] shadow-xl border border-blue-200',
]"
class="rounded-2xl p-6 md:p-8 mb-12 backdrop-blur-sm bg-guild-800/60 border border-guild-700 candlelight-glow halftone-texture"
>
<div class="flex items-center justify-between gap-3 md:gap-4">
<button
:class="[
'p-2 md:p-3 rounded-full transition-all duration-300 flex-shrink-0',
props.theme === 'guild'
? 'bg-candlelight-600/80 text-guild-100 hover:bg-candlelight-500 candlelight-glow'
: 'bg-blue-500 text-white hover:bg-blue-600',
]"
class="p-2 md:p-3 rounded-full transition-all duration-300 flex-shrink-0 bg-candlelight-600/80 text-guild-100 hover:bg-candlelight-500 candlelight-glow"
@click="$emit('prev')"
>
<svg
class="w-5 h-5 md:w-6 md:h-6"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M15 19l-7-7 7-7"
/>
</svg>
<UIcon name="i-lucide-chevron-left" class="size-5 md:size-6" />
</button>
<div class="text-center flex-1 min-w-0">
<slot name="interactive-content">
<p
:class="[
'text-base md:text-lg',
props.theme === 'guild'
? 'text-guild-200'
: 'text-[--ui-text-muted]',
]"
>
{{
interactiveContent ||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit."
}}
<p class="text-base md:text-lg text-guild-200">
{{ interactiveContent }}
</p>
</slot>
</div>
<button
:class="[
'p-2 md:p-3 rounded-full transition-all duration-300 flex-shrink-0',
props.theme === 'guild'
? 'bg-candlelight-600/80 text-guild-100 hover:bg-candlelight-500 candlelight-glow'
: 'bg-blue-500 text-white hover:bg-blue-600',
]"
class="p-2 md:p-3 rounded-full transition-all duration-300 flex-shrink-0 bg-candlelight-600/80 text-guild-100 hover:bg-candlelight-500 candlelight-glow"
@click="$emit('next')"
>
<svg
class="w-5 h-5 md:w-6 md:h-6"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 5l7 7-7 7"
/>
</svg>
<UIcon name="i-lucide-chevron-right" class="size-5 md:size-6" />
</button>
</div>
</div>
<!-- Illustration slot for designer-provided assets -->
<div v-if="$slots.illustration" class="mb-8">
<slot name="illustration" />
</div>
<!-- Call to Action Button -->
<div v-if="showCta" class="flex justify-center">
<UButton
@ -122,8 +77,6 @@
</template>
<script setup>
import { computed } from "vue";
const props = defineProps({
title: {
type: String,
@ -131,18 +84,12 @@ const props = defineProps({
},
subtitle: {
type: String,
default: "",
},
theme: {
type: String,
default: "blue",
validator: (value) =>
["blue", "purple", "emerald", "gray", "guild"].includes(value),
default: '',
},
size: {
type: String,
default: "large",
validator: (value) => ["small", "medium", "large", "hero"].includes(value),
default: 'large',
validator: (value) => ['small', 'medium', 'large', 'hero'].includes(value),
},
showInteractiveArea: {
type: Boolean,
@ -150,7 +97,7 @@ const props = defineProps({
},
interactiveContent: {
type: String,
default: "",
default: '',
},
showCta: {
type: Boolean,
@ -158,55 +105,31 @@ const props = defineProps({
},
ctaText: {
type: String,
default: "Get Started",
default: 'Get Started',
},
ctaLink: {
type: String,
default: "/join",
default: '/join',
},
ctaSize: {
type: String,
default: "lg",
default: 'lg',
},
ctaColor: {
type: String,
default: "primary",
default: 'primary',
},
});
})
defineEmits(["prev", "next"]);
const backgroundClass = computed(() => {
const themes = {
blue: "bg-gradient-to-br from-blue-50 to-indigo-100",
purple: "bg-gradient-to-br from-purple-50 to-violet-100",
emerald: "bg-gradient-to-br from-emerald-50 to-teal-100",
gray: "bg-neutral-100",
guild:
"bg-gradient-to-br from-guild-900 via-guild-800 to-candlelight-900 halftone-texture",
};
return themes[props.theme] || themes.blue;
});
defineEmits(['prev', 'next'])
const titleSizeClass = computed(() => {
const sizes = {
small: "text-2xl md:text-3xl",
medium: "text-3xl md:text-4xl",
large: "text-4xl md:text-5xl",
hero: "text-5xl md:text-6xl",
};
return sizes[props.size] || sizes.large;
});
const titleColorClass = computed(() => {
return "text-white";
});
const subtitleColorClass = computed(() => {
return "text-white";
});
const textColorClass = computed(() => {
return "text-white";
});
small: 'text-display-sm',
medium: 'text-display',
large: 'text-display-lg',
hero: 'text-display-xl',
}
return sizes[props.size] || sizes.large
})
</script>