18 lines
432 B
JavaScript
18 lines
432 B
JavaScript
/* ----- Third Party Imports ----- */
|
|
|
|
/* ----- Project Imports ----- */
|
|
import "@/styles/App.css";
|
|
import Header from "@/components/Header.jsx";
|
|
import Footer from "@/components/Footer.jsx";
|
|
import Content from "@/components/Content.jsx";
|
|
|
|
export function ExpertisePage() {
|
|
return (
|
|
<>
|
|
<h2>You are at the most amazing home page on the planet</h2>
|
|
<p>Home sweet Home!</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ExpertisePage; |