Ela_Front/src/pages/surveydocument.js

19 lines
650 B
JavaScript

import Link from "next/link";
import Navigation from "../components/Navigation";
import SurveyDocument from "../components/SurveyDocument"
import New_Navigation_2025 from "../components/New_Navigation_2025";
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";
export default function Login() {
return (
<div>
<New_Navigation_2025 />
<New_C_Header_2025_V2 />
<SurveyDocument />
<New_C_Footer_Without_Testimony_2025_V2 />
</div>
);
}