Skip to content

Commit

Permalink
Update links
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 committed Jan 27, 2025
1 parent 5f987d9 commit 9ee0392
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 25 deletions.
44 changes: 26 additions & 18 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,26 +94,34 @@ export default function Home() {
return (
<div className="">
<Hero />
<Speakers />
<SponsorList items={sponsors} />
<div id="speakers">
<Speakers />
</div>
<div id="sponsors">
<SponsorList items={sponsors} />
</div>
<Container size="large">
<div className="content-media-sections flex flex-col gap-12 py-12">
<ContentMedia
imageUrl="/images/faq.png"
imagePosition="right"
imageWidth="40%"
title="Besoin d'aide ?"
titleUnderlineColor="purple-100"
>
<Faq />
</ContentMedia>
<ContentMedia
imageUrl="/images/etoile_business_center.jpeg"
imagePosition="left"
imageWidth="40%"
>
<Place />
</ContentMedia>
<div id="faq">
<ContentMedia
imageUrl="/images/faq.png"
imagePosition="right"
imageWidth="40%"
title="Besoin d'aide ?"
titleUnderlineColor="purple-100"
>
<Faq />
</ContentMedia>
</div>
<div id="place">
<ContentMedia
imageUrl="/images/etoile_business_center.jpeg"
imagePosition="left"
imageWidth="40%"
>
<Place />
</ContentMedia>
</div>
</div>
</Container>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/layouts/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Footer = () => {
{
content: {
type: 'link',
href: '#tickets',
href: '',
text: 'Billetterie'
},
className: footerMenuItemLinkStyles
Expand Down Expand Up @@ -73,7 +73,7 @@ const Footer = () => {
{
content: {
type: 'link',
href: '#staff',
href: '/staff',
text: 'Les organisateurs'
},
className: "w-full font-semibold hover:text-orange mb-2"
Expand All @@ -95,7 +95,7 @@ const Footer = () => {
component: Typography,
props: {
className: "mb-2",
children: "© 2025 Meet Magento Paris. Tous droits réservés. Réalisé par Dn'D et Opengento"
children: "© 2025 Meet Magento Paris. Meet Magento is a brand of the Magento Association."
}
},
className: footerMenuItemStyles
Expand Down
8 changes: 4 additions & 4 deletions src/layouts/Header/Navigation/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ const Navigation = () => {
const [isMenuOpen, setIsMenuOpen] = useState(false);

const menuItems = [
{label: "Programme", href: "/programme"},
{label: "Speakers", href: "/speakers"},
{label: "Sponsors", href: "/sponsors"},
{label: "Programme", href: "#programs"},
{label: "Speakers", href: "#speakers"},
{label: "Sponsors", href: "#sponsors"},
{label: "Préparer ma venue", href: "/preparer-ma-venue"},
{label: "FAQ & Contact", href: "/faq-contact"},
{label: "FAQ & Contact", href: "#faq"},
];

return (
Expand Down

0 comments on commit 9ee0392

Please sign in to comment.