cezenGIT/MySQL_conf_pbx/test1/reactcezenpbx/src/components/landing-page/homePage.jsx
2025-05-21 12:51:58 +05:30

14 lines
253 B
JavaScript

import NavBar from "./navBar";
import "./home-page.css";
export default function LandingPage() {
return (
<>
<NavBar />
<article className="landing_screen">
<p>Welcome to the landing page !</p>
</article>
</>
);
}