Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/ET-VISA/commit/146961a6be0b9f579f116dd7d2eda7f3ca73c0c5?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
2 deletions
public/frontend/css/style.css
routes/web.php
@ -306,7 +306,9 @@ Responsive Codes
. student-visa-section ,
. student-visa-section ,
. about-header-section ,
. about-header-section ,
. why-et ,
. why-et ,
. student-visa-section {
. student-visa-section ,
. why-et {
padding : 3rem 6rem ;
padding : 3rem 6rem ;
}
}
. services-section . row ,
. services-section . row ,
@ -640,7 +642,9 @@ Responsive Codes
. student-visa-section h1 ,
. student-visa-section h1 ,
. why-et-header h1 ,
. why-et-header h1 ,
. student-visa-section h1 {
. student-visa-section h1 ,
. why-et-header h1 {
font-weight : 700 ;
font-weight : 700 ;
font-size : 40px ;
font-size : 40px ;
line-height : 60px ;
line-height : 60px ;
@ -292,3 +292,6 @@ Route::get('/visa', function () {
Route::get('/contact', function () {
Route::get('/contact', function () {
return view('contact');
return view('contact');
});
});
Route::get('/about', function () {
return view('about');
});