forked from veda/www_veda_2025
feat: rebrand site from VEDA to Maison Noire
- Updated site title and metadata from "VEDA EGYPT NILE CRUISES" to "Maison Noire" - Removed FeaturedOn component and associated logo assets - Changed title template from "%s - VEDA" to "%s - MN" for consistent branding
This commit is contained in:
@@ -5,8 +5,8 @@ import '@/styles/tailwind.css'
|
||||
|
||||
export const metadata = {
|
||||
title: {
|
||||
template: '%s - VEDA',
|
||||
default: 'VEDA EGYPT NILE CRUISES',
|
||||
template: '%s - MN',
|
||||
default: 'Maison Noire',
|
||||
},
|
||||
description:
|
||||
'Most bookkeeping software is accurate, but hard to use. We make the opposite trade-off, and hope you don’t get audited.',
|
||||
|
||||
@@ -1,47 +0,0 @@
|
||||
import Image from 'next/image'
|
||||
import logo1 from '@/images/logos/1.svg'
|
||||
import logo2 from '@/images/logos/2.svg'
|
||||
import logo3 from '@/images/logos/3.svg'
|
||||
import logo4 from '@/images/logos/4.svg'
|
||||
import logo5 from '@/images/logos/5.svg'
|
||||
import logo6 from '@/images/logos/6.svg'
|
||||
|
||||
export function FeaturedOn() {
|
||||
return (
|
||||
<div className="relative z-10 pt-10">
|
||||
<p className="mt-10 font-display text-large lg:text-2xl font-semibold italic text-slate-900">
|
||||
As seen and featured on
|
||||
</p>
|
||||
<ul
|
||||
role="list"
|
||||
className="mt-8 flex items-center flex-wrap justify-center gap-x-8 sm:flex-col sm:gap-x-0 sm:gap-y-10 xl:flex-row xl:gap-x-12 xl:gap-y-0"
|
||||
>
|
||||
{[
|
||||
[
|
||||
{ name: 'CNN', logo: logo1 },
|
||||
{ name: 'HLS', logo: logo2 },
|
||||
{ name: 'Bookretreats', logo: logo3 },
|
||||
],
|
||||
[
|
||||
{ name: 'Beaviajera', logo: logo4 },
|
||||
{ name: 'Egytalloyd', logo: logo5 },
|
||||
{ name: 'AST', logo: logo6 },
|
||||
],
|
||||
].map((group, groupIndex) => (
|
||||
<li key={groupIndex}>
|
||||
<ul
|
||||
role="list"
|
||||
className="flex flex-col items-center gap-y-8 sm:flex-row sm:gap-x-12 sm:gap-y-0"
|
||||
>
|
||||
{group.map((company) => (
|
||||
<li key={company.name} className="flex">
|
||||
<Image src={company.logo} alt={company.name} unoptimized />
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user