Petropoulos Evangelos 6eba583e13 homepage
2025-06-24 16:56:24 +03:00

14 lines
284 B
TypeScript

// This ensures this component is rendered only on the client side
'use client';
import React from 'react';
export default function InvestigatePage() {
return (
<div>
{/* This page will now be rendered on the client-side */}
<h1>Investigate</h1>
</div>
);
}