diff --git a/src/app/page.tsx b/src/app/page.tsx index 487d6a5..edf5fb4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,7 +21,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="mediumSmall" sizing="largeSmallSizeMediumTitles" - background="grid" + background="circleGradient" cardStyle="outline" primaryButtonStyle="shadow" secondaryButtonStyle="glass" @@ -77,7 +77,7 @@ export default function LandingPage() { }, { id: 2, - title: "Board Games Lounge", description: "150+ board games to explore. Relax with friends, family, or colleagues. Entertainment included with your dining.", imageSrc: "http://img.b2bpic.net/free-photo/young-multiracial-group-close-friends-celebrating-birthday-event-with-wine-party-home-living-room-happy-people-enjoying-fun-time-together-while-drinking-alcoholic-beverages_482257-49889.jpg?_wi=1", imageAlt: "Board game collection" + title: "Board Games Lounge", description: "150+ board games to explore. Relax with friends, family, or colleagues. Entertainment included with your dining.", imageSrc: "http://img.b2bpic.net/free-photo/young-multiracial-group-close-friends-celebrating-birthday-event-with-wine-party-home-living-room-happy-people-enjoying-fun-time-together-while-drinking-alcoholic-beverages_482257-49889.jpg", imageAlt: "Board game collection" }, { id: 3, @@ -185,13 +185,13 @@ export default function LandingPage() { uniformGridCustomHeightClasses="min-h-[500px]" blogs={[ { - id: "1", category: "Entertainment", title: "Quiz Night Thursdays", excerpt: "Test your knowledge and win prizes. Teams welcome. Cash prizes weekly.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-friends-enjoying-party-bar_23-2148037474.jpg?_wi=1", imageAlt: "Quiz night event", authorName: "Unlocked Team", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "Every Thursday" + id: "1", category: "Entertainment", title: "Quiz Night Thursdays", excerpt: "Test your knowledge and win prizes. Teams welcome. Cash prizes weekly.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-friends-enjoying-party-bar_23-2148037474.jpg", imageAlt: "Quiz night event", authorName: "Unlocked Team", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "Every Thursday" }, { - id: "2", category: "Sports", title: "Live Sports Screenings", excerpt: "Catch all major sports events on our premium screens with food & drinks.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-friends-enjoying-party-bar_23-2148037474.jpg?_wi=2", imageAlt: "Sports screening", authorName: "Unlocked Team", authorAvatar: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg", date: "Match Days" + id: "2", category: "Sports", title: "Live Sports Screenings", excerpt: "Catch all major sports events on our premium screens with food & drinks.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-friends-enjoying-party-bar_23-2148037474.jpg", imageAlt: "Sports screening", authorName: "Unlocked Team", authorAvatar: "http://img.b2bpic.net/free-photo/cheerful-handsome-businessman_1262-21003.jpg", date: "Match Days" }, { - id: "3", category: "Gaming", title: "Board Game Tournaments", excerpt: "Compete with other gamers. Fun, prizes, and bragging rights await.", imageSrc: "http://img.b2bpic.net/free-photo/young-multiracial-group-close-friends-celebrating-birthday-event-with-wine-party-home-living-room-happy-people-enjoying-fun-time-together-while-drinking-alcoholic-beverages_482257-49889.jpg?_wi=2", imageAlt: "Board game tournament", authorName: "Unlocked Team", authorAvatar: "http://img.b2bpic.net/free-photo/selfie-portrait-videocall_23-2149186129.jpg", date: "Monthly" + id: "3", category: "Gaming", title: "Board Game Tournaments", excerpt: "Compete with other gamers. Fun, prizes, and bragging rights await.", imageSrc: "http://img.b2bpic.net/free-photo/young-multiracial-group-close-friends-celebrating-birthday-event-with-wine-party-home-living-room-happy-people-enjoying-fun-time-together-while-drinking-alcoholic-beverages_482257-49889.jpg", imageAlt: "Board game tournament", authorName: "Unlocked Team", authorAvatar: "http://img.b2bpic.net/free-photo/selfie-portrait-videocall_23-2149186129.jpg", date: "Monthly" } ]} buttons={[ @@ -235,7 +235,7 @@ export default function LandingPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +};