![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/lavocat.ca/private_html/src/pages/ |
import React, { useState, useEffect } from 'react';
import SEO from '@/components/SEO';
import LayoutWithSidebar from '../components/LayoutWithSidebar';
export default function LegalNotice() {
const [isMobile, setIsMobile] = useState(false);
useEffect(() => {
const checkMobile = () => {
setIsMobile(window.innerWidth < 768);
};
checkMobile();
window.addEventListener('resize', checkMobile);
return () => window.removeEventListener('resize', checkMobile);
}, []);
return (
<LayoutWithSidebar>
<div className={`container mx-auto ${isMobile ? 'px-3 py-6' : 'px-4 py-8'}`}>
<SEO
title="Legal Notice"
description="Hosting information and legal notices for Liberté Même en Cellule"
keywords={["legal notice", "terms", "privacy"]}
/>
<h1 className={`font-bold mb-6 text-primary ${isMobile ? 'text-2xl' : 'text-4xl'}`}>Legal Notice</h1>
<section className={`${isMobile ? 'mb-6' : 'mb-8'}`}>
<h2 className={`font-semibold ${isMobile ? 'text-lg mb-3' : 'text-2xl mb-4'}`}>
Hosting Information
</h2>
<div className="prose max-w-none">
<p className={`${isMobile ? 'text-sm' : ''}`}>
This website is hosted by Vercel Inc., 340 S Lemon Ave #4133, Walnut, CA 91789, United States.
For any questions regarding hosting, please contact Vercel support.
</p>
</div>
</section>
</div>
</LayoutWithSidebar>
);
}