diff --git a/src/components/homepage/ContentTabs.tsx b/src/components/homepage/ContentTabs.tsx index 2d4968f6..11dd659a 100644 --- a/src/components/homepage/ContentTabs.tsx +++ b/src/components/homepage/ContentTabs.tsx @@ -125,7 +125,7 @@ export function ContentTabs() {

Most Popular Parks

Highest rated theme parks worldwide

-
+
{popularParks.map((park) => ( ))} @@ -137,7 +137,7 @@ export function ContentTabs() {

Trending Parks

Most reviewed parks this month

-
+
{trendingParks.map((park) => ( ))} @@ -149,7 +149,7 @@ export function ContentTabs() {

Most Popular Rides

Highest rated attractions worldwide

-
+
{popularRides.map((ride) => ( ))} @@ -161,7 +161,7 @@ export function ContentTabs() {

Trending Rides

Most talked about attractions

-
+
{trendingRides.map((ride) => ( ))} @@ -173,7 +173,7 @@ export function ContentTabs() {

Recently Added Parks

Latest parks added to our database

-
+
{recentParks.map((park) => ( ))} @@ -185,7 +185,7 @@ export function ContentTabs() {

Recently Added Rides

Latest attractions added to our database

-
+
{recentRides.map((ride) => ( ))} diff --git a/src/components/parks/ParkCard.tsx b/src/components/parks/ParkCard.tsx index bf1dfc81..106183c9 100644 --- a/src/components/parks/ParkCard.tsx +++ b/src/components/parks/ParkCard.tsx @@ -67,7 +67,7 @@ export function ParkCard({ park }: ParkCardProps) {
- + {/* Header */}

diff --git a/src/components/parks/ParkGridView.tsx b/src/components/parks/ParkGridView.tsx index 17e24500..fdbc1d27 100644 --- a/src/components/parks/ParkGridView.tsx +++ b/src/components/parks/ParkGridView.tsx @@ -7,7 +7,7 @@ interface ParkGridViewProps { export function ParkGridView({ parks }: ParkGridViewProps) { return ( -
+
{parks.map((park) => (
- + {/* Header */}

diff --git a/src/pages/Designers.tsx b/src/pages/Designers.tsx index cb218f37..cead25e6 100644 --- a/src/pages/Designers.tsx +++ b/src/pages/Designers.tsx @@ -164,7 +164,7 @@ export default function Designers() { {/* Companies Grid */} {filteredCompanies.length > 0 ? ( -
+
{filteredCompanies.map((company) => ( ))} diff --git a/src/pages/Manufacturers.tsx b/src/pages/Manufacturers.tsx index 5b9a0588..a9462553 100644 --- a/src/pages/Manufacturers.tsx +++ b/src/pages/Manufacturers.tsx @@ -178,7 +178,7 @@ export default function Manufacturers() { {/* Companies Grid */} {filteredCompanies.length > 0 ? ( -
+
{filteredCompanies.map((company) => ( ))} diff --git a/src/pages/Operators.tsx b/src/pages/Operators.tsx index 24a54104..8535dd3f 100644 --- a/src/pages/Operators.tsx +++ b/src/pages/Operators.tsx @@ -213,7 +213,7 @@ const Operators = () => { {/* Operators Grid */} {!isLoading && filteredAndSortedOperators && ( -
+
{filteredAndSortedOperators.map((operator) => ( ))} diff --git a/src/pages/Rides.tsx b/src/pages/Rides.tsx index 7eda2d0b..5f699682 100644 --- a/src/pages/Rides.tsx +++ b/src/pages/Rides.tsx @@ -246,7 +246,7 @@ export default function Rides() { {/* Rides Grid */} {filteredRides.length > 0 ? ( -
+
{filteredRides.map((ride) => ( ))} diff --git a/tailwind.config.ts b/tailwind.config.ts index 9d6813a1..6191578a 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -11,7 +11,7 @@ export default { DEFAULT: "1rem", sm: "1.5rem", md: "1.5rem", - lg: "2rem", + lg: "1.75rem", xl: "2rem", "2xl": "2.5rem", "3xl": "3rem",