From 43c3b8b8072d91c3a7e6bf6644e80d7c0f956aa2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:40:26 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a79948a..51480db 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Crown, CreditCard, Discord, Download, Github, HelpCircle, Mail, MessageSquare, Palette, Rocket, Shield, Sparkles, Star, Twitter, Zap } from 'lucide-react'; +import { Crown, CreditCard, Download, Github, HelpCircle, Mail, MessageSquare, Palette, Rocket, Shield, Sparkles, Star, Twitter, Zap } from 'lucide-react'; export default function LandingPage() { return ( @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="small" sizing="mediumLarge" - background="noiseDiagonalGradient" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="glass" @@ -49,7 +49,7 @@ export default function LandingPage() { tag="Premium Scripts" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "noiseDiagonalGradient" }} + background={{ variant: "radial-gradient" }} mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148367678.jpg", imageAlt: "FiveM server dashboard interface modern" @@ -283,7 +283,6 @@ export default function LandingPage() { copyrightText="© 2025 Galaxy Script. All rights reserved." socialLinks={[ { icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }, - { icon: Discord, href: "https://discord.com", ariaLabel: "Discord" }, { icon: Github, href: "https://github.com", ariaLabel: "GitHub" } ]} /> -- 2.49.1 From 5a3f4bd240c529f23763f8130a48f8fc549fa61b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:40:27 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 57 +++++++------------ 1 file changed, 20 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..966cbcd 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,34 @@ -"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; + textClassName?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ + text, + className = '', + textClassName = '' +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1