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. 34
      web/public/index.html
  2. 1
      web/public/undraw_server_q2pb.svg
  3. 20
      web/src/App.vue

34
web/public/index.html

@ -1,17 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>undraw_server_q2pb.svg">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</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>
<Navbar />
<Hero />
<div class="columns mt-6 mb-6 mx-4">
<div class="column is-one-fifth">
<Panel />
</div>
<div class="column">
Fourth column
<div>
<Navbar />
<Hero />
<div class="columns mt-6 mb-6 mx-4">
<div class="column is-one-fifth mx-2">
<Panel />
</div>
<div class="column mx-2"></div>
</div>
<Footer />
</div>
<Footer />
</template>
<script lang="ts">
@ -23,8 +23,8 @@ import Footer from '@/components/Footer.vue';
components: {
Navbar,
Hero,
Footer,
Panel,
Footer,
},
})
export default class App extends Vue {}

Loading…
Cancel
Save