@xenterprises/nuxt-x-marketing 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default defineNuxtConfig({
|
|
2
|
-
extends: [
|
|
3
|
-
modules: [
|
|
4
|
-
compatibilityDate:
|
|
5
|
-
})
|
|
2
|
+
extends: ["..", "@nuxt/ui-pro"],
|
|
3
|
+
modules: ["@nuxt/ui"],
|
|
4
|
+
compatibilityDate: "2024-10-23",
|
|
5
|
+
});
|
package/app.vue
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<main class="min-h-screen flex flex-col justify-between">
|
|
3
|
+
<section class="flex-grow">
|
|
4
|
+
<NuxtLayout>
|
|
5
|
+
<NuxtPage />
|
|
6
|
+
</NuxtLayout>
|
|
7
|
+
</section>
|
|
8
|
+
<section>
|
|
9
|
+
<XFooterXLegal />
|
|
10
|
+
</section>
|
|
11
|
+
</main>
|
|
12
|
+
</template>
|
|
13
|
+
<script setup>
|
|
14
|
+
</script>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<footer
|
|
3
|
+
class="bg-gray-900 text-gray-500 text-xs relative overflow-visible pt-4"
|
|
4
|
+
>
|
|
5
|
+
<img
|
|
6
|
+
src="https://cdn.x.enterprises/logo-x.png"
|
|
7
|
+
alt="X Enterprises"
|
|
8
|
+
class="h-6 w-6 mx-auto -mt-7 relative z-10"
|
|
9
|
+
/>
|
|
10
|
+
<main
|
|
11
|
+
class="max-w-screen-xl flex flex-col md:flex-row justify-between items-center px-4 pb-4"
|
|
12
|
+
>
|
|
13
|
+
<div>
|
|
14
|
+
Copyright ©2016-{{ new Date().getFullYear() }} X Enterprises, LLC.
|
|
15
|
+
All Rights Reserved.
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
<div class="text-right">
|
|
19
|
+
<a
|
|
20
|
+
href="https://x.enterprises/legal/terms"
|
|
21
|
+
class="hover:underline"
|
|
22
|
+
target="_blank"
|
|
23
|
+
>
|
|
24
|
+
Terms of Service
|
|
25
|
+
</a>
|
|
26
|
+
<a
|
|
27
|
+
href="https://x.enterprises/legal/privacy-policy"
|
|
28
|
+
class="ml-4 hover:underline"
|
|
29
|
+
target="_blank"
|
|
30
|
+
>
|
|
31
|
+
Privacy Policy
|
|
32
|
+
</a>
|
|
33
|
+
<a
|
|
34
|
+
href="https://x.enterprises/legal/cookie-policy"
|
|
35
|
+
class="ml-4 hover:underline"
|
|
36
|
+
target="_blank"
|
|
37
|
+
>
|
|
38
|
+
Cookie Policy
|
|
39
|
+
</a>
|
|
40
|
+
</div>
|
|
41
|
+
</main>
|
|
42
|
+
</footer>
|
|
43
|
+
</template>
|
|
44
|
+
<script setup>
|
|
45
|
+
</script>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenterprises/nuxt-x-marketing",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
5
|
"main": "./nuxt.config.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "nuxi dev .playground",
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
"preview": "nuxt preview .playground"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
+
"@nuxt/ui": "^2.18.7",
|
|
15
|
+
"@nuxt/ui-pro": "^1.4.4",
|
|
14
16
|
"nuxt": "^3.13.2",
|
|
15
17
|
"typescript": "^5.6.3",
|
|
16
18
|
"vue": "latest"
|
package/eslint.config.js
DELETED