Merge version_1 into main #2

Merged
bender merged 2 commits from version_1 into main 2026-03-12 01:32:30 +00:00
2 changed files with 19 additions and 41 deletions

View File

@@ -19,7 +19,7 @@ export default function LandingPage() {
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumSizeLargeTitles"
background="aurora"
background="circleGradient"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
@@ -44,7 +44,7 @@ export default function LandingPage() {
<HeroBillboard
title="Experience Culinary Excellence at Lou's Pointe-Claire"
description="Discover an exquisite dining destination where premium cuisine meets sophisticated ambiance. Our award-winning restaurant offers an unforgettable journey through carefully curated menus and impeccable service."
background={{ variant: "aurora" }}
background={{ variant: "sparkles-gradient" }}
tag="Fine Dining"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -53,7 +53,7 @@ export default function LandingPage() {
{ text: "View Our Menu", href: "#features" }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/fried-chicken-breast-with-sliced-fruits-vegetables_140725-3619.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/fried-chicken-breast-with-sliced-fruits-vegetables_140725-3619.jpg"
imageAlt="Elegant fine dining at Lou's Pointe-Claire"
mediaAnimation="slide-up"
avatarText="Voted Best Restaurant 2024"
@@ -161,7 +161,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/fried-chicken-breast-with-sliced-fruits-vegetables_140725-3619.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/fried-chicken-breast-with-sliced-fruits-vegetables_140725-3619.jpg"
imageAlt="Contact us to reserve"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -1,51 +1,29 @@
"use client";
import React, { SVGProps } from 'react';
import { memo } from "react";
import useSvgTextLogo from "./useSvgTextLogo";
import { cls } from "@/lib/utils";
interface SvgTextLogoProps {
logoText: string;
adjustHeightFactor?: number;
verticalAlign?: "top" | "center";
interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
className?: string;
}
const SvgTextLogo = memo<SvgTextLogoProps>(function SvgTextLogo({
logoText,
adjustHeightFactor,
verticalAlign = "top",
className = "",
}) {
const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ className = '', ...props }) => {
return (
<svg
ref={svgRef}
viewBox={viewBox}
className={cls("w-full", className)}
style={{ aspectRatio: aspectRatio }}
preserveAspectRatio="none"
role="img"
aria-label={`${logoText} logo`}
viewBox="0 0 200 50"
xmlns="http://www.w3.org/2000/svg"
className={`w-full h-full ${className}`}
{...props}
>
<text
ref={textRef}
x="0"
y={verticalAlign === "center" ? "50%" : "0"}
className="font-bold fill-current"
style={{
fontSize: "20px",
letterSpacing: "-0.02em",
dominantBaseline: verticalAlign === "center" ? "middle" : "text-before-edge"
}}
x="10"
y="35"
fontSize="32"
fontWeight="bold"
fill="currentColor"
dominantBaseline="middle"
>
{logoText}
Logo
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
};
export default SvgTextLogo;