Files
karudhaas/resources/views/app.blade.php

49 lines
955 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/app.css">
<style>
@font-face {
font-family: "mvtyper";
src: url("/fonts/mvtyper.ttf");
}
@font-face {
font-family: "Mvaamu";
src: url("/fonts/mv-aammu-fk.ttf");
}
.MvAamu {
font-family: "Mvaamu";
}
.MvTyper {
font-family: "mvtyper";
}
</style>
</head>
<body>
<div id="app">
<div class="container mx-auto">
@include('partials.header')
<main class="mt-12">
<router-view></router-view>
</main>
@include('partials.footer')
</div>
</div>
<script src="/js/app.js"></script>
</body>
</html>