Files
laradock/DOCUMENTATION/src/components/WelcomePage/index.tsx
2025-05-17 13:58:36 +02:00

14 lines
334 B
TypeScript

import React from 'react';
import styles from './styles.module.css';
export default function WelcomePage() {
return (
<section className={styles.welcome}>
<div className={styles.heroContent}>
<h1>Full PHP Dev Environment For Docker</h1>
</div>
<div className={styles.overlay} />
</section>
);
}