// pages/index.tsx
|
|
import React from 'react';
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<div style={{ padding: '2rem' }}>
|
|
<h1>Welcome to EventDash!</h1>
|
|
<p>This is your homepage (index.tsx)</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|
Powered by TurnKey Linux.