Skip to content

Commit 1765797

Browse files
author
Vue Play
committed
Stored by Vue Play
1 parent 8140a77 commit 1765797

File tree

3 files changed

+1
-174
lines changed

3 files changed

+1
-174
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"socket.io-client": "^4.7.4",
1414
"@feathersjs/client": "^5.0.22",
1515
"moment": "^2.30.1",
16-
"highlight.js": "^11.9.0",
17-
"@unhead/vue": "^2.0.0-rc.13"
16+
"highlight.js": "^11.9.0"
1817
},
1918
"devDependencies": {
2019
"@jscomponent/rollup": "^1.0.4",

src/views/Pricing.vue

Lines changed: 0 additions & 171 deletions
Original file line numberDiff line numberDiff line change
@@ -1,171 +0,0 @@
1-
<template>
2-
<div class="space-y-0 bg-slate-100 flex flex-col h-screen">
3-
<!---->
4-
<VueNavigator class="z-10" />
5-
<header>
6-
<h1 class="text-6xl mt-12 mb-6">Pricings</h1>
7-
</header>
8-
<main class="bg-slate-100 grow">
9-
<section
10-
style="text-align:left"
11-
class="bg-slate-100"
12-
>
13-
<Pricing style="margin-bottom:50px;max-width:786px;text-align:left;margin-right:auto;margin-left:auto" />
14-
</section>
15-
<p
16-
data-v-d443ee1d=""
17-
style="margin-top:80px;margin-bottom:50px"
18-
>
19-
Upgrade to Premium on
20-
your profile in
21-
Studio
22-
</p>
23-
<section
24-
style="text-align:center;margin-top:50px;margin-bottom:10px"
25-
class="pb-12 bg-slate-100"
26-
>
27-
<button
28-
@click="$router.push('/features')"
29-
class="bg-slate-200 transition-shadow hover:drop-shadow-lg drop-shadow"
30-
>
31-
Features
32-
</button> <button
33-
@click="open('https://studio.vueplay.com')"
34-
class="bg-purple-500 from-blue-500 bg-gradient-to-br hover:bg-purple-600 hover:from-blue-600 text-white duration-300 transition hover:drop-shadow-lg drop-shadow"
35-
>
36-
Get Started
37-
<svg
38-
xmlns="http://www.w3.org/2000/svg"
39-
viewBox="0 0 24 24"
40-
fill="currentColor"
41-
class="w-4 h-4 ml-1 -mt-1 inline-block"
42-
>
43-
<path
44-
fill-rule="evenodd"
45-
d="M9.315 7.584C12.195 3.883 16.695 1.5 21.75 1.5a.75.75 0 01.75.75c0 5.056-2.383 9.555-6.084 12.436A6.75 6.75 0 019.75 22.5a.75.75 0 01-.75-.75v-4.131A15.838 15.838 0 016.382 15H2.25a.75.75 0 01-.75-.75 6.75 6.75 0 017.815-6.666zM15 6.75a2.25 2.25 0 100 4.5 2.25 2.25 0 000-4.5z"
46-
clip-rule="evenodd"
47-
/>
48-
<path d="M5.26 17.242a.75.75 0 10-.897-1.203 5.243 5.243 0 00-2.05 5.022.75.75 0 00.625.627 5.243 5.243 0 005.022-2.051.75.75 0 10-1.202-.897 3.744 3.744 0 01-3.008 1.51c0-1.23.592-2.323 1.51-3.008z" />
49-
</svg> </button>
50-
</section>
51-
</main>
52-
<Footer class="pb-12" />
53-
</div>
54-
</template>
55-
<script>
56-
import VueNavigator from "@/components/Navigator.vue";
57-
import Pricing from "@/components/Pricing.vue";
58-
import Footer from "@/components/Footer.vue";
59-
//import Meta from "@/components/Meta.vue";
60-
//import Meta from "@/components/Meta.vue";
61-
//import Meta from "@/components/Meta.vue";
62-
//import Meta from "@/components/Meta.vue";
63-
export default {
64-
components: {
65-
VueNavigator,
66-
Pricing,
67-
Footer
68-
//Meta
69-
},
70-
data: () => ({}),
71-
methods: {
72-
open(url) {
73-
location.href = url;
74-
}
75-
},
76-
head() {
77-
return {
78-
title: '2Pricing',
79-
titleTemplate: '%s | Health Tips',
80-
meta: [{
81-
property: 'og:title',
82-
content: 'My Awesome Pricing'
83-
}, {
84-
property: 'og:description',
85-
content: 'This is an amazing website!'
86-
}, {
87-
property: 'og:image',
88-
content: 'https://example.com/image.jpg'
89-
}, {
90-
property: 'og:url',
91-
content: 'https://example.com/page'
92-
}, {
93-
property: 'og:type',
94-
content: 'website'
95-
}, {
96-
name: 'twitter:card',
97-
content: 'summary_large_image'
98-
}, {
99-
name: 'twitter:title',
100-
content: 'My Awesome Page'
101-
}, {
102-
name: 'twitter:description',
103-
content: 'This is an amazing website!'
104-
}, {
105-
name: 'twitter:image',
106-
content: 'https://example.com/image.jpg'
107-
}]
108-
};
109-
}
110-
};
111-
112-
</script>
113-
<style scoped>
114-
body,
115-
html,
116-
#app {
117-
margin-top: 0px;
118-
margin-left: 0px;
119-
margin-bottom: 0px;
120-
margin-right: 0px;
121-
}
122-
123-
main {
124-
display: inline-block;
125-
text-align: center;
126-
width: 100%;
127-
padding: 10px;
128-
box-sizing: border-box;
129-
margin-bottom: 50px;
130-
}
131-
132-
header {
133-
text-align: center;
134-
font-family: verdana;
135-
padding-top: 10px;
136-
padding-bottom: 10px;
137-
}
138-
139-
p {
140-
font-size: 20px;
141-
color: #6b6b6bff;
142-
margin-top: 50px;
143-
margin-bottom: 15px;
144-
}
145-
146-
em {
147-
font-style: normal;
148-
color: rgba(238, 76, 215, 1);
149-
}
150-
151-
section button {
152-
border: none;
153-
padding-top: 10px;
154-
padding-right: 15px;
155-
padding-bottom: 10px;
156-
padding-left: 15px;
157-
border-top-left-radius: 8px;
158-
border-top-right-radius: 8px;
159-
border-bottom-left-radius: 8px;
160-
border-bottom-right-radius: 8px;
161-
font-size: 17px;
162-
margin-right: 20px;
163-
cursor: pointer;
164-
transition: .5s ease background;
165-
}
166-
167-
section button:last-child {
168-
margin-right: 0px;
169-
}
170-
171-
</style>

vite.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ if (fs.existsSync('./cache')) fs.rmSync('./cache', {
1414
})
1515

1616
export default defineConfig({
17-
base: '/',
1817
plugins: [vue(), dataUri()],
1918
resolve: {
2019
alias: {

0 commit comments

Comments
 (0)