import { Heading } from '@/components/Heading/Heading'; import { Aside, Layout, Main } from '@/components/Layout/Layout'; import { Link } from '@/components/Link/Link'; import { Paragraph } from '@/components/Paragraph/Paragraph'; import TLDRProfile from '@/components/TLDRProfile/TLDRProfile'; import type { JSX } from 'react'; import { Helmet } from 'react-helmet-async'; /** * Main home page component * * @returns JSX element with homepage content */ export default function HomePage(): JSX.Element { const jsonLd = { '@context': 'https://schema.org', '@type': 'Person', name: 'Barry Prendergast', jobTitle: 'Consulting Design Strategist', url: 'https://renderg.host', address: { '@type': 'PostalAddress', addressLocality: 'Berlin', addressCountry: 'Germany', }, sameAs: [ 'https://bsky.app/profile/renderg.host', 'https://linkedin.com/in/barryprendergast', 'https://signal.me/#eu/XO_aKC1aE1GZYWdMx7WK7HKGSCfrlpNhlxLGNi774dhiL7qr32BAMrH1BqgChaiM', ], worksFor: { '@type': 'Organization', name: 'Thomas Kuhn Foundation', url: 'https://thomaskuhnfoundation.org/', }, knowsAbout: [ 'Design Strategy', 'Service Design', 'Product Design', 'Systems Thinking', 'Human-Centred Design', 'Technology', 'Science Communication', ], }; return ( <>