Browse Source

Add components

main
Haris Razis 4 years ago
parent
commit
1356251a2b
No known key found for this signature in database GPG Key ID: 86A4D290ED03FAB4
  1. 32
      web/public/index.html
  2. 1
      web/public/undraw_server_q2pb.svg
  3. 20
      web/src/App.vue

32
web/public/index.html

@ -1,17 +1,21 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="utf-8"> <head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> <meta name="viewport" content="width=device-width,initial-scale=1.0">
<title><%= htmlWebpackPlugin.options.title %></title> <link rel="icon" href="<%= BASE_URL %>undraw_server_q2pb.svg">
</head> <title><%= htmlWebpackPlugin.options.title %></title>
<body> </head>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> <body>
</noscript> <noscript>
<div id="app"></div> <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
<!-- built files will be auto injected --> Please enable it to continue.</strong>
</body> </noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html> </html>

1
web/public/undraw_server_q2pb.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

20
web/src/App.vue

@ -1,15 +1,15 @@
<template> <template>
<Navbar /> <div>
<Hero /> <Navbar />
<div class="columns mt-6 mb-6 mx-4"> <Hero />
<div class="column is-one-fifth"> <div class="columns mt-6 mb-6 mx-4">
<Panel /> <div class="column is-one-fifth mx-2">
</div> <Panel />
<div class="column"> </div>
Fourth column <div class="column mx-2"></div>
</div> </div>
<Footer />
</div> </div>
<Footer />
</template> </template>
<script lang="ts"> <script lang="ts">
@ -23,8 +23,8 @@ import Footer from '@/components/Footer.vue';
components: { components: {
Navbar, Navbar,
Hero, Hero,
Footer,
Panel, Panel,
Footer,
}, },
}) })
export default class App extends Vue {} export default class App extends Vue {}

Loading…
Cancel
Save