Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-03-13 08:28:39 +00:00
2 changed files with 25 additions and 41 deletions

View File

@@ -18,7 +18,7 @@ export default function LandingPage() {
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="blurBottom"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
@@ -44,7 +44,7 @@ export default function LandingPage() {
description="Fresh kebabs, handmade pide, gozleme and legendary HSPs — made with passion and served late."
tag="Hidden Gem. Real Food. Made Fresh."
tagAnimation="slide-up"
background={{ variant: "blurBottom" }}
background={{ variant: "canvas-reveal" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=j28a7y"
imageAlt="Freshly grilled Turkish kebab with vibrant vegetables"
buttons={[
@@ -196,7 +196,7 @@ export default function LandingPage() {
{ text: "Visit Us Tonight", href: "contact" }
]}
buttonAnimation="slide-up"
background={{ variant: "blurBottom" }}
background={{ variant: "canvas-reveal" }}
useInvertedBackground={false}
/>
</div>

View File

@@ -1,51 +1,35 @@
"use client";
import { memo } from "react";
import useSvgTextLogo from "./useSvgTextLogo";
import { cls } from "@/lib/utils";
import React from 'react';
interface SvgTextLogoProps {
logoText: string;
adjustHeightFactor?: number;
verticalAlign?: "top" | "center";
text: string;
className?: string;
}
const SvgTextLogo = memo<SvgTextLogoProps>(function SvgTextLogo({
logoText,
adjustHeightFactor,
verticalAlign = "top",
className = "",
}) {
const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
export default function SvgTextLogo({ text, className = '' }: SvgTextLogoProps) {
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 300 100"
className={`w-full h-auto ${className}`}
xmlns="http://www.w3.org/2000/svg"
>
<defs>
<linearGradient id="textGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stopColor="currentColor" />
<stop offset="100%" stopColor="currentColor" stopOpacity="0.7" />
</linearGradient>
</defs>
<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="50%"
y="50%"
textAnchor="middle"
dominantBaseline="central"
fontSize="48"
fontWeight="bold"
fill="url(#textGradient)"
className="font-sans"
>
{logoText}
{text}
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
export default SvgTextLogo;
}