mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-25 10:11:12 -05:00
Fix button positioning
This commit is contained in:
@@ -125,11 +125,22 @@ export default function Manufacturers() {
|
|||||||
<main className="container mx-auto px-4 py-8">
|
<main className="container mx-auto px-4 py-8">
|
||||||
{/* Page Header */}
|
{/* Page Header */}
|
||||||
<div className="mb-8">
|
<div className="mb-8">
|
||||||
<div className="flex items-center justify-between mb-4">
|
<div className="flex items-center gap-3 mb-4">
|
||||||
<div className="flex items-center gap-3">
|
<Factory className="w-8 h-8 text-primary" />
|
||||||
<Factory className="w-10 h-10 text-primary" />
|
|
||||||
<h1 className="text-4xl font-bold">Manufacturers</h1>
|
<h1 className="text-4xl font-bold">Manufacturers</h1>
|
||||||
</div>
|
</div>
|
||||||
|
<p className="text-lg text-muted-foreground mb-4">
|
||||||
|
Explore the manufacturers behind your favorite rides and attractions
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<div className="flex flex-wrap items-center gap-1.5 sm:gap-2">
|
||||||
|
<Badge variant="secondary" className="text-sm sm:text-base px-2 py-0.5 sm:px-3 sm:py-1">
|
||||||
|
{filteredCompanies.length} manufacturers
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
<Button
|
<Button
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (!user) {
|
if (!user) {
|
||||||
@@ -144,11 +155,6 @@ export default function Manufacturers() {
|
|||||||
Add Manufacturer
|
Add Manufacturer
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-lg text-muted-foreground">
|
|
||||||
Explore the manufacturers behind your favorite rides and attractions
|
|
||||||
</p>
|
|
||||||
<div className="flex items-center gap-2 mt-2">
|
|
||||||
<Badge variant="secondary">{filteredCompanies.length} manufacturers found</Badge>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user