Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-06-07 23:55:53 +00:00
3 changed files with 10 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ import { CalendarDays, Trophy, ListChecks } from "lucide-react";
const commonNavItems = [
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Match Center", href: "/match-center" },
{ name: "Match Center", id: "/match-center" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },

View File

@@ -81,7 +81,7 @@ export default function NewsroomPage() {
id: "club-news-1", category: "Club News", title: "Annual Charity Event Raises Record Funds", excerpt: "Our annual charity gala was a huge success, raising over $50,000 for local community programs. A big thank you to all who participated!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-3.jpg", imageAlt: "Charity event group photo", authorName: "Club Admin", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.jpg", date: "October 26, 2023"
},
{
id: "match-news-1", category: "Match News", title: "Thrilling Victory in Season Opener", excerpt: "Our team kicked off the season with a nail-biting 3-2 victory against rivals. Watch the highlights!", videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/bg-video.mp4", imageAlt: "Soccer match highlights", authorName: "Sports Reporter", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", date: "October 25, 2023"
id: "match-news-1", category: "Match News", title: "Thrilling Victory in Season Opener", excerpt: "Our team kicked off the season with a nail-biting 3-2 victory against rivals. Watch the highlights!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-5.jpg", imageAlt: "Soccer match highlights", authorName: "Sports Reporter", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.jpg", date: "October 25, 2023"
},
{
id: "transfer-news-1", category: "Transfer News", title: "Star Forward Signs New Long-Term Deal", excerpt: "We are thrilled to announce that our star forward, Alexandro, has signed a new long-term contract, committing his future to the club.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-9.jpg", imageAlt: "Football player signing contract", authorName: "Transfer Desk", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.jpg", date: "October 24, 2023"
@@ -90,7 +90,7 @@ export default function NewsroomPage() {
id: "club-news-2", category: "Club News", title: "Youth Academy Player Wins National Award", excerpt: "Rising talent, Maya Singh, from our youth academy has been recognized with the prestigious Young Player of the Year award.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-10.jpg", imageAlt: "Young player with award", authorName: "Youth Development", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-4.jpg", date: "October 23, 2023"
},
{
id: "match-news-2", category: "Match News", title: "Derby Day Preview: Key Players to Watch", excerpt: "All eyes are on the upcoming derby. Get our expert analysis on the key matchups and players who could decide the game.", videoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/about-video.mp4", imageAlt: "Derby match preview", authorName: "Tactical Analyst", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-11.jpg", date: "October 22, 2023"
id: "match-news-2", category: "Match News", title: "Derby Day Preview: Key Players to Watch", excerpt: "All eyes are on the upcoming derby. Get our expert analysis on the key matchups and players who could decide the game.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-6.jpg", imageAlt: "Derby match preview", authorName: "Tactical Analyst", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/landscaping/img-11.jpg", date: "October 22, 2023"
}
]}
/>

View File

@@ -26,13 +26,13 @@ export default function SponsorsPage() {
<NavbarStyleFullscreen
brandName="GreenScape"
navItems={[
{ name: "Services", href: "/#services" },
{ name: "About", href: "/#about" },
{ name: "Team", href: "/#team" },
{ name: "Testimonials", href: "/#testimonials" },
{ name: "Sponsors", href: "/sponsors" },
{ name: "Fan Space", href: "/#fan-space" },
{ name: "Contact", href: "/#contact" }
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Sponsors", id: "/sponsors" },
{ name: "Fan Space", id: "fan-space" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Call Now", href: "/#contact" }}
/>