diff --git a/public/img/front-page/fon1_blok.png b/public/img/front-page/fon1_blok.png new file mode 100644 index 0000000..b3a0328 Binary files /dev/null and b/public/img/front-page/fon1_blok.png differ diff --git a/public/img/front-page/professor.png b/public/img/front-page/professor.png new file mode 100644 index 0000000..b964fb5 Binary files /dev/null and b/public/img/front-page/professor.png differ diff --git a/resources/views/layouts/test-applicant-layout.blade.php b/resources/views/layouts/test-applicant-layout.blade.php new file mode 100644 index 0000000..e5fbed2 --- /dev/null +++ b/resources/views/layouts/test-applicant-layout.blade.php @@ -0,0 +1,154 @@ + + + + + + + Абитуриенту ФГБОУ ВО "МГТУ" + + + + + + + + + + + + + + + @yield('extra_styles') + + + + + + + + + + +{{--
--}} +{{--
--}} + +{{--
--}} +{{-- --}} +{{-- --}} +{{-- --}} +{{--
--}} +{{-- --}} + + +{{--
--}} +{{--
--}} + + +{{--
--}} +{{--
Бакалавриат / Специалитет
--}} +{{--
Магистратура
--}} +{{--
Иностранным абитуриентам
--}} +{{--
--}} +{{--
ПОСТУПАЙ В МГТУ
--}} +{{-- --}} +
+ +
+
+ +
+
+ +
+
+
+
+
Бакалавриат / Специалитет
+
+
+
Магистратура
+
+
+
Иностранным абитуриентам
+
+
+
+
+
+ ПОСТУПАЙ В МГТУ +
+
+
+
+ 75 студенческих объединений +
+
+
+
+ 3367 БЮДЖЕТНЫХ МЕСТ +
+
+
+
+ 300 образовательных программ +
+
+
+





+
+ + + + +
+ +
diff --git a/resources/views/test-home.blade.php b/resources/views/test-home.blade.php new file mode 100644 index 0000000..832f4ba --- /dev/null +++ b/resources/views/test-home.blade.php @@ -0,0 +1,3 @@ +@extends('layouts.test-applicant-layout') +@section('content') +@endsection diff --git a/routes/pages.php b/routes/pages.php index 0b51ea5..4d83cb0 100644 --- a/routes/pages.php +++ b/routes/pages.php @@ -3,6 +3,10 @@ use App\Http\Controllers\admin\PageController; use Illuminate\Support\Facades\Route; +Route::get('/test-home', function () { + return view('test-home'); +})->name('test-home'); + Route::get('/', function () { return view('home'); })->name('home');