This commit is contained in:
2026-03-24 21:08:57 -04:00
parent 9d21f06d51
commit 5be7d43446
20 changed files with 968 additions and 625 deletions

View File

@@ -11,8 +11,8 @@ import photo3 from "@/assets/photos/silver-and-white-apartment-interior-2023-11-
import photo4 from "@/assets/photos/a-bedroom-with-white-walls-and-a-bed-and-a-2023-11-27-05-25-30-utc.webp";
import photo5 from "@/assets/photos/empty-room-with-window-2023-11-27-05-08-12-utc.webp";
import logo from "@/assets/cachet-hero-logo.svg";
export type HeroContent = {
pillCta: string;
title: string;
title2: string;
subtitle: string;
@@ -35,7 +35,7 @@ const autoplayPlugin = Autoplay({
});
export default function Hero({ content }: { content: HeroContent }) {
const { pillCta, title, title2, subtitle, cta, ctaHref } = content;
const { subtitle, cta, ctaHref } = content;
return (
<div className="bg-white dark:bg-gray-900">
@@ -61,7 +61,7 @@ export default function Hero({ content }: { content: HeroContent }) {
<div className="relative z-10 mx-auto max-w-7xl px-6 lg:px-8 h-full flex items-center justify-center pt-14">
<div className="mx-auto max-w-4xl text-center">
<div className="hidden sm:mb-8 sm:flex sm:justify-center">
{/* <div className="hidden sm:mb-8 sm:flex sm:justify-center">
<div className="flex flex-wrap items-center justify-center gap-2 gap-x-3.5 rounded-full px-4 py-2 text-sm/6 text-gray-300 ring-1 ring-white/20">
<span>RBQ {general.rbq}</span>
<span className="text-white/30" aria-hidden>
@@ -73,7 +73,7 @@ export default function Hero({ content }: { content: HeroContent }) {
</span>
<span>{pillCta}</span>
</div>
</div>
</div> */}
{/* <h1
className="text-5xl font-semibold tracking-tight text-balance text-white sm:text-7xl"
style={{ fontFamily: "var(--font-display)" }}