23 lines
619 B
JavaScript
23 lines
619 B
JavaScript
import Navigation from "../components/Navigation";
|
|
import Account from "./../components/Account";
|
|
import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
|
|
import New_C_Footer_Without_Testimony_2025_V2 from "../components/footer_automatic_files/Layout_Without_Testimony";
|
|
import New_Navigation_2025 from "../components/New_Navigation_2025";
|
|
|
|
const account = () => {
|
|
|
|
return (
|
|
|
|
<div>
|
|
<New_Navigation_2025 />
|
|
<New_C_Header_2025_V2 />
|
|
<Account />
|
|
<New_C_Footer_Without_Testimony_2025_V2 />
|
|
</div>
|
|
|
|
)
|
|
}
|
|
|
|
export default account;
|
|
|