@edgedev/create-edge-site 1.0.7 → 1.0.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/create-edge-site",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Create Edge Starter Site",
5
5
  "bin": {
6
6
  "create-edge-site": "./bin/cli.js"
@@ -0,0 +1,33 @@
1
+ <script setup>
2
+ onMounted(() => {
3
+ console.log('Hello world.')
4
+ })
5
+ </script>
6
+
7
+ <template>
8
+ <Head>
9
+ <Title>Edge Website - An awesome Edge website</Title>
10
+ <Meta name="description" content="This is an Edge website template" />
11
+ <Link rel="canonical" href="https://edgemarketingdesign.com/" />
12
+ </Head>
13
+
14
+ <titleSection
15
+ page="404"
16
+ headline="404 - Page Not Found"
17
+ />
18
+ <div class="min-h-[calc(100vh_-_586px)] w-full items-center justify-center flex flex-col">
19
+ <h1 class="text-6xl font-bold mb-4">
20
+ 404
21
+ </h1>
22
+ <p class="text-xl mb-2">
23
+ Page Not Found
24
+ </p>
25
+ <p class="text-md text-gray-400 mb-6">
26
+ Looks like this page took an early return and never came back.<br />
27
+ Maybe it hit a <code class="bg-gray-800 px-1 py-0.5 rounded">null pointer</code>... or just rage-quit the DOM.
28
+ </p>
29
+ <a href="/" class="px-6 py-2 mt-2 transition-colors bg-lblue text-dblue hover:bg-opacity-80">
30
+ Go Home & Debug Later
31
+ </a>
32
+ </div>
33
+ </template>
package/pages/contact.vue CHANGED
@@ -28,9 +28,9 @@ onMounted(() => {
28
28
 
29
29
  <template>
30
30
  <Head>
31
- <title>Edge Website - An awesome Edge website</title>
32
- <meta name="description" content="This is an Edge website template" />
33
- <link rel="canonical" href="https://edgemarketingdesign.com/" />
31
+ <Title>Edge Website - An awesome Edge website</Title>
32
+ <Meta name="description" content="This is an Edge website template" />
33
+ <Link rel="canonical" href="https://edgemarketingdesign.com/" />
34
34
  </Head>
35
35
 
36
36
  <titleSection
package/pages/index.vue CHANGED
@@ -6,11 +6,11 @@ onMounted(() => {
6
6
 
7
7
  <template>
8
8
  <Head>
9
- <title>Edge Website - An awesome Edge website</title>
10
- <meta name="description" content="This is an Edge website template">
11
- <link rel="canonical" href="https://edgemarketingdesign.com/">
9
+ <Title>Edge Website - An awesome Edge website</Title>
10
+ <Meta name="description" content="This is an Edge website template" />
11
+ <Link rel="canonical" href="https://edgemarketingdesign.com/" />
12
12
  </Head>
13
13
  <div class="min-h-[calc(100vh_-_328px)] w-full items-center justify-center flex flex-col">
14
- <img src="/images/edge_logo.png" class="w-[400px] h-auto" alt="Edge Marketing Design Logo">
14
+ <img src="/images/edge_logo.png" class="w-[400px] h-auto" alt="Edge Marketing Design Logo" />
15
15
  </div>
16
16
  </template>
package/pages/stuff.vue CHANGED
@@ -6,9 +6,9 @@ onMounted(() => {
6
6
 
7
7
  <template>
8
8
  <Head>
9
- <title>Edge Website - An awesome Edge website</title>
10
- <meta name="description" content="This is an Edge website template" />
11
- <link rel="canonical" href="https://edgemarketingdesign.com/" />
9
+ <Title>Edge Website - An awesome Edge website</Title>
10
+ <Meta name="description" content="This is an Edge website template" />
11
+ <Link rel="canonical" href="https://edgemarketingdesign.com/" />
12
12
  </Head>
13
13
 
14
14
  <titleSection