Skip to content

Commit e911ddb

Browse files
Remove banner
1 parent 74046fd commit e911ddb

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

layouts/default.vue

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
<template>
22
<div class="bg-ink-400 flex flex-col min-h-screen antialiased text-vanilla-300">
3-
<banner>
4-
<a
5-
:href="BANNER.CTA.LINK"
6-
target="_blank"
7-
rel="noopener noreferrer"
8-
class="flex flex-row items-center text-center justify-center space-x-2"
9-
>
10-
<span>{{ BANNER.TEXT }}</span>
11-
<ExternalLinkIcon class="md:inline-block hidden" size="1x" />
12-
</a>
13-
</banner>
143
<navbar :tag="tag"></navbar>
154
<main class="flex flex-1">
165
<section class="container max-w-6xl mx-auto flex flex-col md:flex-row">
@@ -24,27 +13,17 @@
2413
<script>
2514
import Navbar from '~/components/Navbar.vue'
2615
import Sidebar from '~/components/Sidebar.vue'
27-
import Banner from '~/components/Banner.vue'
2816
import { ExternalLinkIcon } from 'vue-feather-icons'
2917
30-
const BANNER = {
31-
TEXT: 'Fix code quality issues in 10,000+ open-source projects with DeepSource Discover',
32-
CTA: {
33-
LINK: 'https://deepsource.io/discover'
34-
}
35-
}
36-
3718
export default {
3819
components: {
3920
Navbar,
4021
Sidebar,
41-
Banner,
4222
ExternalLinkIcon
4323
},
4424
data: function () {
4525
return {
46-
tag: {},
47-
BANNER
26+
tag: {}
4827
}
4928
}
5029
}

0 commit comments

Comments
 (0)