class CurriculumVitae {
		public main: string;

		constructor() {
			this.main =
				"Hi, I'm Jérôme Marichez.
				A web developer specialized in React.
				Creating dynamic and high-performance interfaces. 
				Passionate about innovation and enhancing the user experience.
			";
		}
	}

	class experience extends CurriculumVitae {

	  	 public displayExperience(): void {
			console.log("Experience 2023");
		}

	}
	

		const isItHome = (): true | false => {
	if (pathname.length < 2) return true;
	return false;
	
	

	export const metadata: Metadata = {
	title: 'Jérôme Marichez - Web Developer React - Home',
	description: 'Web Developer',
	}

	export default function RootLayout({
	children,
	}: {
	children: React.ReactNode
	}) {
	return (
	<html lang="en">
	<body className={FiraCode.className}>
		<Header />
		<LayoutNavProvider>
		{children}
		</LayoutNavProvider>
	</body>
	</html>
	)
	}
	
Picture of me

< i'm marichez jérôme, web developer >

return (
		<>
			<CodeBlock text={codeBlockText} fontSize="medium" language="typescript" />
			<footer className={styles.footer}>
				<div className={styles.group}>
					<a href="https://www.linkedin.com/in/j%C3%A9r%C3%B4me-marichez-31948712b/" target="_blank">Linkedin</a>
					<a href="https://github.com/Jerome-Marichez" target="_blank">Github</a>
				</div>
				<div className={styles.group}>
					<a href="tel:+33771651588">Tel: +33771651588</a>
					<a href="mailto:jeromemarichez@ik.me">Email: jeromemarichez@ik.me</a>
				</div>
			</footer>
		</>
	)