Skip to content

Commit

Permalink
feat(page): change phone number
Browse files Browse the repository at this point in the history
  • Loading branch information
akiletour committed Oct 3, 2024
1 parent dc04ac2 commit f016578
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
12 changes: 6 additions & 6 deletions src/app/(pages)/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import ContactForm from '@component/ContactForm';
import Layout from '@component/Layout';
import { RouteLink, getCanonicalUrl } from '@lib/route';
import ContactForm from "@component/ContactForm";
import Layout from "@component/Layout";
import { RouteLink, getCanonicalUrl } from "@lib/route";

export const metadata = {
title: 'Un projet web ? Parlons-en - Contactez-moi - Pascal GAULT',
title: "Un projet web ? Parlons-en - Contactez-moi - Pascal GAULT",
description:
'Vous avez une idée de projet web et vous souhaitez me consulter pour que l’on puisse y réfléchir ensemble ? N'hésitez pas à me contact au 06 51 89 89 17.',
"Vous avez une idée de projet web et vous souhaitez me consulter pour que l’on puisse y réfléchir ensemble ? N'hésitez pas à me contact au 06 82 96 38 89.",
alternates: {
canonical: getCanonicalUrl(RouteLink.contact),
},
Expand Down Expand Up @@ -48,7 +48,7 @@ export default function Contact() {
</p>

<div className="text-orange font-bold text-3xl mt-2">
06 51 89 89 17
06 82 96 38 39
</div>
<div className="text-sm">du lundi au samedi de 10h à 19h</div>
</div>
Expand Down
64 changes: 32 additions & 32 deletions src/app/(pages)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
import { ReactNode } from 'react';
import { ReactNode } from "react";

import Footer from '@layout/Footer';
import Footer from "@layout/Footer";

import './globals.css';
import "./globals.css";

export async function generateMetadata() {
return {
openGraph: {
type: 'website',
locale: 'fr-FR',
url: 'https://www.inrage.fr',
site_name: 'inRage',
type: "website",
locale: "fr-FR",
url: "https://www.inrage.fr",
site_name: "inRage",
images: [
{
url: 'https://www.inrage.fr/images/screenshot.png',
url: "https://www.inrage.fr/images/screenshot.png",
width: 1200,
height: 900,
alt: 'inRage',
type: 'image/png',
alt: "inRage",
type: "image/png",
},
],
},
twitter: {
card: 'summary_large_image',
creator: '@akiletour',
site: '@akiletour',
card: "summary_large_image",
creator: "@akiletour",
site: "@akiletour",
},
};
}

export default function RootLayout({ children }: { children: ReactNode }) {
const jsonLd = {
organizationType: 'Corporation',
id: 'https://www.inrage.fr/#corporation',
logo: 'https://i1.wp.com/www.inrage.fr/wp-content/uploads/2019/12/logo-inrage.png?fit=150%2C56&ssl=1',
legalName: 'inRage SARL',
name: 'inRage',
organizationType: "Corporation",
id: "https://www.inrage.fr/#corporation",
logo: "https://i1.wp.com/www.inrage.fr/wp-content/uploads/2019/12/logo-inrage.png?fit=150%2C56&ssl=1",
legalName: "inRage SARL",
name: "inRage",
address: {
streetAddress: '10 rue Jean Perrin',
addressLocality: 'La Rochelle',
addressRegion: 'Charente Maritime',
postalCode: '17000',
addressCountry: 'FR',
streetAddress: "10 rue Jean Perrin",
addressLocality: "La Rochelle",
addressRegion: "Charente Maritime",
postalCode: "17000",
addressCountry: "FR",
},
contactPoints: [
{
telephone: '+33 (0)6 51 89 89 17',
contactType: 'Pascal GAULT',
areaServed: 'FR',
availableLanguage: 'French',
telephone: "+33 (0)6 82 96 38 39",
contactType: "Pascal GAULT",
areaServed: "FR",
availableLanguage: "French",
},
],
url: 'https://www.inrage.fr',
url: "https://www.inrage.fr",
sameAs: [
'https://www.facebook.com/inragefr/',
'https://www.instagram.com/akiletour/',
'https://www.linkedin.com/in/akiletour/',
'https://twitter.com/akiletour',
"https://www.facebook.com/inragefr/",
"https://www.instagram.com/akiletour/",
"https://www.linkedin.com/in/akiletour/",
"https://twitter.com/akiletour",
],
};
return (
Expand Down
12 changes: 6 additions & 6 deletions src/app/(pages)/mentions-legales/page.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import Layout from '@component/Layout';
import { RouteLink, getCanonicalUrl } from '@lib/route';
import Layout from "@component/Layout";
import { RouteLink, getCanonicalUrl } from "@lib/route";

export const metadata = {
title: 'Mentions légales - inRage',
title: "Mentions légales - inRage",
alternates: {
canonical: getCanonicalUrl(RouteLink.legals),
},
};

const LegalTitle = ({ children }: { children: string }) => {
return (
<h2 className={'mt-6 mb-2 text-white font-bold text-3xl'}>{children}</h2>
<h2 className={"mt-6 mb-2 text-white font-bold text-3xl"}>{children}</h2>
);
};

Expand All @@ -28,7 +28,7 @@ export default function Legals() {
<br />
Courriel : contact(at)inrage.fr
<br />
Tél : +33 (0)6 51 89 89 17
Tél : +33 (0)6 82 96 38 39
<br />
</p>

Expand Down Expand Up @@ -87,7 +87,7 @@ export default function Legals() {
<a
className="text-orange"
href="https://vercel.com/"
target={'_blank'}
target={"_blank"}
rel="noreferrer"
>
www.vercel.com
Expand Down

0 comments on commit f016578

Please sign in to comment.