Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/agency/[city]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default async function CityPage({ params }: AgencyPageProps) {
];

return (
<main className="min-h-screen pt-32 pb-16">
<main className="min-h-screen pt-32 pb-16 w-full">

<LocalBusinessSchema
type="ProfessionalService"
Expand Down
18 changes: 9 additions & 9 deletions src/components/marketing/agency/contact-cta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ const ContactCTA: React.FC<ContactCTAProps> = ({ agency }) => {
</div>

<div className="flex flex-wrap gap-4">
<Link href={Routes.contact}>
<Button size="lg">
<Button asChild size="lg" className="text-md xs:text-lg">
<Link href={Routes.contact}>
Discuter de votre projet
<ArrowRight className="ml-2 w-5 h-5" />
</Button>
</Link>
<Link href={Routes.services}>
<Button variant="outline" size="lg">
Découvrir nos services
</Button>
</Link>
</Link>
</Button>
<Button asChild variant="outline" size="lg">
<Link href={Routes.services}>
Découvrir nos services
</Link>
</Button>
</div>
</div>
</div>
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ export default {
],
theme: {
extend: {
screens: {
'xs': '480px'
},
fontFamily: {
sans: ["var(--font-figtree)"],
},
Expand Down