startmeow 1.0.0

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.
Files changed (62) hide show
  1. package/README.md +1 -0
  2. package/StartMeow +0 -0
  3. package/debug.log +3 -0
  4. package/go.mod +28 -0
  5. package/go.sum +44 -0
  6. package/internal/README.md +1 -0
  7. package/internal/generator.go +99 -0
  8. package/internal/projbuilder.go +188 -0
  9. package/internal/prompts.go +138 -0
  10. package/internal/queue.go +57 -0
  11. package/internal/states.go +88 -0
  12. package/internal/tui/debug.log +5 -0
  13. package/internal/tui/go.sum +44 -0
  14. package/internal/tui/models/app.go +260 -0
  15. package/internal/tui/models/help.go +54 -0
  16. package/internal/tui/models/question.go +34 -0
  17. package/internal/tui/styles/style.go +82 -0
  18. package/internal/types.go +78 -0
  19. package/internal/userinterface_string.go +26 -0
  20. package/main.go +60 -0
  21. package/manifest.json +5 -0
  22. package/manifests/manifest.json +7 -0
  23. package/package.json +28 -0
  24. package/templates/backend/README.md +1 -0
  25. package/templates/backend/express/README.md.tmpl +9 -0
  26. package/templates/backend/express/index.js.tmpl +13 -0
  27. package/templates/backend/express/package.json.tmpl +11 -0
  28. package/templates/frontend/README.md +1 -0
  29. package/templates/ui/README.md +1 -0
  30. package/templates/ui/blog/home.tsx.tmpl +53 -0
  31. package/templates/ui/blog/index.html +48 -0
  32. package/templates/ui/blog/page.tsx +45 -0
  33. package/templates/ui/blog/page.tsx.tmpl +45 -0
  34. package/templates/ui/download/home.tsx.tmpl +53 -0
  35. package/templates/ui/download/index.html +51 -0
  36. package/templates/ui/download/manifest.json +5 -0
  37. package/templates/ui/download/page.tsx +49 -0
  38. package/templates/ui/download/page.tsx.tmpl +49 -0
  39. package/templates/ui/landing/home.tsx.tmpl +55 -0
  40. package/templates/ui/landing/index.html +53 -0
  41. package/templates/ui/landing/page.tsx +51 -0
  42. package/templates/ui/landing/page.tsx.tmpl +51 -0
  43. package/templates/ui/store/home.tsx.tmpl +49 -0
  44. package/templates/ui/store/index.html +47 -0
  45. package/templates/ui/store/page.tsx +45 -0
  46. package/templates/ui/store/page.tsx.tmpl +45 -0
  47. package/test-project/README.md +36 -0
  48. package/test-project/app/favicon.ico +0 -0
  49. package/test-project/app/globals.css +26 -0
  50. package/test-project/app/layout.tsx +34 -0
  51. package/test-project/app/page.tsx +49 -0
  52. package/test-project/eslint.config.mjs +18 -0
  53. package/test-project/next.config.ts +7 -0
  54. package/test-project/package-lock.json +6593 -0
  55. package/test-project/package.json +26 -0
  56. package/test-project/postcss.config.mjs +7 -0
  57. package/test-project/public/file.svg +1 -0
  58. package/test-project/public/globe.svg +1 -0
  59. package/test-project/public/next.svg +1 -0
  60. package/test-project/public/vercel.svg +1 -0
  61. package/test-project/public/window.svg +1 -0
  62. package/test-project/tsconfig.json +34 -0
@@ -0,0 +1,13 @@
1
+ const express = require('express');
2
+ const app = express();
3
+ const cors = require('cors');
4
+
5
+ app.use(cors())
6
+
7
+ app.get('/', (req, res) => {
8
+ res.send('Hello from our server!')
9
+ })
10
+
11
+ app.listen(8080, () => {
12
+ console.log('server listening on port 8080')
13
+ })
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "{{ .ProjectName }}",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "scripts": {
6
+ "start": "node index.js"
7
+ },
8
+ "dependencies": {
9
+ "express": "^4.18.2"
10
+ }
11
+ }
@@ -0,0 +1 @@
1
+ Frontend Templates
@@ -0,0 +1 @@
1
+ User Interface Templates
@@ -0,0 +1,53 @@
1
+ import type { Route } from "./+types/home";
2
+
3
+ export function loader() {
4
+ return { name: "React Router" };
5
+ }
6
+
7
+ export default function Home({ loaderData }: Route.ComponentProps) {
8
+ return (
9
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
10
+
11
+ <header className="mb-12 text-center">
12
+ <h1 className="text-5xl font-extrabold">Download {{ .ProjectName }}</h1>
13
+ <p className="text-gray-600 text-lg mt-2">Get the latest version below.</p>
14
+ </header>
15
+
16
+ <main className="flex-grow flex flex-col items-center justify-center space-y-6">
17
+ <p className="text-gray-700 max-w-xl text-center">
18
+ Click the button below to download the newest release of {{ .ProjectName }}.
19
+ </p>
20
+
21
+ <a href="#"
22
+ className="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
23
+ Download Now
24
+ </a>
25
+ </main>
26
+
27
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
28
+ <div className="container mx-auto flex justify-between">
29
+ <div>
30
+ <h4 className="font-semibold">Quick Links</h4>
31
+ <ul className="space-y-2">
32
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
33
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
34
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
35
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
36
+ </ul>
37
+ </div>
38
+
39
+ <div className="flex space-x-4">
40
+ <a href="#" className="hover:text-gray-400">GitHub</a>
41
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
42
+ <a href="#" className="hover:text-gray-400">Twitter</a>
43
+ </div>
44
+ </div>
45
+
46
+ <div className="mt-4 text-center">
47
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
48
+ </div>
49
+ </footer>
50
+
51
+ </div>
52
+ );
53
+ }
@@ -0,0 +1,48 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>{{ .ProjectName }} – Blog</title>
6
+ <script src="https://cdn.tailwindcss.com"></script>
7
+ </head>
8
+ <body class="min-h-screen flex flex-col bg-gray-100 p-8">
9
+ <header class="mb-8">
10
+ <h1 class="text-4xl font-bold">Blog</h1>
11
+ <p class="text-gray-600">Latest posts and updates</p>
12
+ </header>
13
+
14
+ <main class="space-y-4 flex-grow">
15
+ <article class="bg-white p-6 rounded-lg shadow">
16
+ <h2 class="text-2xl font-semibold">Sample Blog Post</h2>
17
+ <p class="text-gray-700 mt-2">
18
+ This is a placeholder blog post. Replace this with your own content.
19
+ </p>
20
+ </article>
21
+ </main>
22
+
23
+ <footer class="bg-gray-800 text-white py-6 rounded-lg">
24
+ <div class="container mx-auto flex justify-between">
25
+ <div>
26
+ <h4 class="font-semibold">Quick Links</h4>
27
+ <ul class="space-y-2">
28
+ <li><a href="#" class="hover:text-gray-400">Home</a></li>
29
+ <li><a href="#" class="hover:text-gray-400">Store</a></li>
30
+ <li><a href="#" class="hover:text-gray-400">Download</a></li>
31
+ <li><a href="#" class="hover:text-gray-400">Blog</a></li>
32
+ </ul>
33
+ </div>
34
+
35
+ <div class="flex space-x-4">
36
+ <a href="#" class="hover:text-gray-400">GitHub</a>
37
+ <a href="#" class="hover:text-gray-400">LinkedIn</a>
38
+ <a href="#" class="hover:text-gray-400">Twitter</a>
39
+ </div>
40
+ </div>
41
+
42
+ <div class="mt-4 text-center">
43
+ <p class="text-sm">&copy; 2026 StartMeow.</p>
44
+ </div>
45
+ </footer>
46
+ </body>
47
+
48
+ </html>
@@ -0,0 +1,45 @@
1
+ import Image from "next/image";
2
+
3
+ export default function Home() {
4
+ return (
5
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
6
+ <header className="mb-8">
7
+ <h1 className="text-4xl font-bold">Blog</h1>
8
+ <p className="text-gray-600">Latest posts and updates</p>
9
+ </header>
10
+
11
+ <main className="space-y-4 flex-grow">
12
+ <article className="bg-white p-6 rounded-lg shadow">
13
+ <h2 className="text-2xl font-semibold">Sample Blog Post</h2>
14
+ <p className="text-gray-700 mt-2">
15
+ This is a placeholder blog post. Replace this with your own content.
16
+ </p>
17
+ </article>
18
+ </main>
19
+
20
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
21
+ <div className="container mx-auto flex justify-between pl-4 pr-4">
22
+ <div>
23
+ <h4 className="font-semibold">Quick Links</h4>
24
+ <ul className="space-y-1 pl-2">
25
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
26
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
27
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
28
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
29
+ </ul>
30
+ </div>
31
+
32
+ <div className="flex space-x-4">
33
+ <a href="#" className="hover:text-gray-400">GitHub</a>
34
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
35
+ <a href="#" className="hover:text-gray-400">Twitter</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div className="mt-4 text-center">
40
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
41
+ </div>
42
+ </footer>
43
+ </div>
44
+ );
45
+ }
@@ -0,0 +1,45 @@
1
+ import Image from "next/image";
2
+
3
+ export default function Home() {
4
+ return (
5
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
6
+ <header className="mb-8">
7
+ <h1 className="text-4xl font-bold">Blog</h1>
8
+ <p className="text-gray-600">Latest posts and updates</p>
9
+ </header>
10
+
11
+ <main className="space-y-4 flex-grow">
12
+ <article className="bg-white p-6 rounded-lg shadow">
13
+ <h2 className="text-2xl font-semibold">Sample Blog Post</h2>
14
+ <p className="text-gray-700 mt-2">
15
+ This is a placeholder blog post. Replace this with your own content.
16
+ </p>
17
+ </article>
18
+ </main>
19
+
20
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
21
+ <div className="container mx-auto flex justify-between">
22
+ <div>
23
+ <h4 className="font-semibold">Quick Links</h4>
24
+ <ul className="space-y-2">
25
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
26
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
27
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
28
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
29
+ </ul>
30
+ </div>
31
+
32
+ <div className="flex space-x-4">
33
+ <a href="#" className="hover:text-gray-400">GitHub</a>
34
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
35
+ <a href="#" className="hover:text-gray-400">Twitter</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div className="mt-4 text-center">
40
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
41
+ </div>
42
+ </footer>
43
+ </div>
44
+ );
45
+ }
@@ -0,0 +1,53 @@
1
+ import type { Route } from "./+types/home";
2
+
3
+ export function loader() {
4
+ return { name: "React Router" };
5
+ }
6
+
7
+ export default function Home({ loaderData }: Route.ComponentProps) {
8
+ return (
9
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
10
+
11
+ <header className="mb-12 text-center">
12
+ <h1 className="text-5xl font-extrabold">Download {{ .ProjectName }}</h1>
13
+ <p className="text-gray-600 text-lg mt-2">Get the latest version below.</p>
14
+ </header>
15
+
16
+ <main className="flex-grow flex flex-col items-center justify-center space-y-6">
17
+ <p className="text-gray-700 max-w-xl text-center">
18
+ Click the button below to download the newest release of {{ .ProjectName }}.
19
+ </p>
20
+
21
+ <a href="#"
22
+ className="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
23
+ Download Now
24
+ </a>
25
+ </main>
26
+
27
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
28
+ <div className="container mx-auto flex justify-between">
29
+ <div>
30
+ <h4 className="font-semibold">Quick Links</h4>
31
+ <ul className="space-y-2">
32
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
33
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
34
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
35
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
36
+ </ul>
37
+ </div>
38
+
39
+ <div className="flex space-x-4">
40
+ <a href="#" className="hover:text-gray-400">GitHub</a>
41
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
42
+ <a href="#" className="hover:text-gray-400">Twitter</a>
43
+ </div>
44
+ </div>
45
+
46
+ <div className="mt-4 text-center">
47
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
48
+ </div>
49
+ </footer>
50
+
51
+ </div>
52
+ );
53
+ }
@@ -0,0 +1,51 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>{{ .ProjectName }} – Download</title>
6
+ <script src="https://cdn.tailwindcss.com"></script>
7
+ </head>
8
+ <body class="min-h-screen flex flex-col bg-gray-100 p-8">
9
+
10
+ <header class="mb-12 text-center">
11
+ <h1 class="text-5xl font-extrabold">Download {{ .ProjectName }}</h1>
12
+ <p class="text-gray-600 text-lg mt-2">Get the latest version below.</p>
13
+ </header>
14
+
15
+ <main class="flex-grow flex flex-col items-center justify-center space-y-6">
16
+ <p class="text-gray-700 max-w-xl text-center">
17
+ Click the button below to download the newest release of {{ .ProjectName }}.
18
+ </p>
19
+
20
+ <a href="#"
21
+ class="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
22
+ Download Now
23
+ </a>
24
+ </main>
25
+
26
+ <footer class="bg-gray-800 text-white py-6 rounded-lg">
27
+ <div class="container mx-auto flex justify-between">
28
+ <div>
29
+ <h4 class="font-semibold">Quick Links</h4>
30
+ <ul class="space-y-2">
31
+ <li><a href="#" class="hover:text-gray-400">Home</a></li>
32
+ <li><a href="#" class="hover:text-gray-400">Store</a></li>
33
+ <li><a href="#" class="hover:text-gray-400">Download</a></li>
34
+ <li><a href="#" class="hover:text-gray-400">Blog</a></li>
35
+ </ul>
36
+ </div>
37
+
38
+ <div class="flex space-x-4">
39
+ <a href="#" class="hover:text-gray-400">GitHub</a>
40
+ <a href="#" class="hover:text-gray-400">LinkedIn</a>
41
+ <a href="#" class="hover:text-gray-400">Twitter</a>
42
+ </div>
43
+ </div>
44
+
45
+ <div class="mt-4 text-center">
46
+ <p class="text-sm">&copy; 2026 StartMeow.</p>
47
+ </div>
48
+ </footer>
49
+
50
+ </body>
51
+ </html>
@@ -0,0 +1,5 @@
1
+ {
2
+ "files": {
3
+ "page.tsx.tmpl": "app/page.tsx"
4
+ }
5
+ }
@@ -0,0 +1,49 @@
1
+ import Image from "next/image";
2
+
3
+ export default function Home() {
4
+ return (
5
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
6
+
7
+ <header className="mb-12 text-center">
8
+ <h1 className="text-5xl font-extrabold">Download {{ .ProjectName }}</h1>
9
+ <p className="text-gray-600 text-lg mt-2">Get the latest version below.</p>
10
+ </header>
11
+
12
+ <main className="flex-grow flex flex-col items-center justify-center space-y-6">
13
+ <p className="text-gray-700 max-w-xl text-center">
14
+ Click the button below to download the newest release of {{ .ProjectName }}.
15
+ </p>
16
+
17
+ <a href="#"
18
+ className="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
19
+ Download Now
20
+ </a>
21
+ </main>
22
+
23
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
24
+ <div className="container mx-auto flex justify-between">
25
+ <div>
26
+ <h4 className="font-semibold">Quick Links</h4>
27
+ <ul className="space-y-2">
28
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
29
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
30
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
31
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
32
+ </ul>
33
+ </div>
34
+
35
+ <div className="flex space-x-4">
36
+ <a href="#" className="hover:text-gray-400">GitHub</a>
37
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
38
+ <a href="#" className="hover:text-gray-400">Twitter</a>
39
+ </div>
40
+ </div>
41
+
42
+ <div className="mt-4 text-center">
43
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
44
+ </div>
45
+ </footer>
46
+
47
+ </div>
48
+ );
49
+ }
@@ -0,0 +1,49 @@
1
+ import Image from "next/image";
2
+
3
+ export default function Home() {
4
+ return (
5
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
6
+
7
+ <header className="mb-12 text-center">
8
+ <h1 className="text-5xl font-extrabold">Download {{ .ProjectName }}</h1>
9
+ <p className="text-gray-600 text-lg mt-2">Get the latest version below.</p>
10
+ </header>
11
+
12
+ <main className="flex-grow flex flex-col items-center justify-center space-y-6">
13
+ <p className="text-gray-700 max-w-xl text-center">
14
+ Click the button below to download the newest release of {{ .ProjectName }}.
15
+ </p>
16
+
17
+ <a href="#"
18
+ className="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
19
+ Download Now
20
+ </a>
21
+ </main>
22
+
23
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
24
+ <div className="container mx-auto flex justify-between">
25
+ <div>
26
+ <h4 className="font-semibold">Quick Links</h4>
27
+ <ul className="space-y-2">
28
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
29
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
30
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
31
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
32
+ </ul>
33
+ </div>
34
+
35
+ <div className="flex space-x-4">
36
+ <a href="#" className="hover:text-gray-400">GitHub</a>
37
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
38
+ <a href="#" className="hover:text-gray-400">Twitter</a>
39
+ </div>
40
+ </div>
41
+
42
+ <div className="mt-4 text-center">
43
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
44
+ </div>
45
+ </footer>
46
+
47
+ </div>
48
+ );
49
+ }
@@ -0,0 +1,55 @@
1
+ import type { Route } from "./+types/home";
2
+
3
+ export function loader() {
4
+ return { name: "React Router" };
5
+ }
6
+
7
+ export default function Home({ loaderData }: Route.ComponentProps) {
8
+ return (
9
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
10
+
11
+ <header className="mb-12 text-center">
12
+ <h1 className="text-5xl font-extrabold">{{ .ProjectName }}</h1>
13
+ <p className="text-gray-600 text-lg mt-2">Your product tagline goes here.</p>
14
+ </header>
15
+
16
+ <main className="flex-grow flex flex-col items-center justify-center space-y-6">
17
+ <h2 className="text-3xl font-semibold">Welcome to {{ .ProjectName }}</h2>
18
+ <p className="text-gray-700 max-w-xl text-center">
19
+ This is your landing page. Customize this section to introduce your product,
20
+ service, or idea. Keep it simple and clear.
21
+ </p>
22
+
23
+ <a href="#"
24
+ className="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
25
+ Get Started
26
+ </a>
27
+ </main>
28
+
29
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
30
+ <div className="container mx-auto flex justify-between pl-4 pr-4">
31
+ <div>
32
+ <h4 className="font-semibold">Quick Links</h4>
33
+ <ul className="space-y-1 pl-2">
34
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
35
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
36
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
37
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
38
+ </ul>
39
+ </div>
40
+
41
+ <div className="flex space-x-4">
42
+ <a href="#" className="hover:text-gray-400">GitHub</a>
43
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
44
+ <a href="#" className="hover:text-gray-400">Twitter</a>
45
+ </div>
46
+ </div>
47
+
48
+ <div className="mt-4 text-center">
49
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
50
+ </div>
51
+ </footer>
52
+
53
+ </div>
54
+ );
55
+ }
@@ -0,0 +1,53 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>{{ .ProjectName }} – Welcome</title>
6
+ <script src="https://cdn.tailwindcss.com"></script>
7
+ </head>
8
+ <body class="min-h-screen flex flex-col bg-gray-100 p-8">
9
+
10
+ <header class="mb-12 text-center">
11
+ <h1 class="text-5xl font-extrabold">{{ .ProjectName }}</h1>
12
+ <p class="text-gray-600 text-lg mt-2">Your product tagline goes here.</p>
13
+ </header>
14
+
15
+ <main class="flex-grow flex flex-col items-center justify-center space-y-6">
16
+ <h2 class="text-3xl font-semibold">Welcome to {{ .ProjectName }}</h2>
17
+ <p class="text-gray-700 max-w-xl text-center">
18
+ This is your landing page. Customize this section to introduce your product,
19
+ service, or idea. Keep it simple and clear.
20
+ </p>
21
+
22
+ <a href="#"
23
+ class="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
24
+ Get Started
25
+ </a>
26
+ </main>
27
+
28
+ <footer class="bg-gray-800 text-white py-6 rounded-lg">
29
+ <div class="container mx-auto flex justify-between">
30
+ <div>
31
+ <h4 class="font-semibold">Quick Links</h4>
32
+ <ul class="space-y-2">
33
+ <li><a href="#" class="hover:text-gray-400">Home</a></li>
34
+ <li><a href="#" class="hover:text-gray-400">Store</a></li>
35
+ <li><a href="#" class="hover:text-gray-400">Download</a></li>
36
+ <li><a href="#" class="hover:text-gray-400">Blog</a></li>
37
+ </ul>
38
+ </div>
39
+
40
+ <div class="flex space-x-4">
41
+ <a href="#" class="hover:text-gray-400">GitHub</a>
42
+ <a href="#" class="hover:text-gray-400">LinkedIn</a>
43
+ <a href="#" class="hover:text-gray-400">Twitter</a>
44
+ </div>
45
+ </div>
46
+
47
+ <div class="mt-4 text-center">
48
+ <p class="text-sm">&copy; 2026 StartMeow.</p>
49
+ </div>
50
+ </footer>
51
+
52
+ </body>
53
+ </html>
@@ -0,0 +1,51 @@
1
+ import Image from "next/image";
2
+
3
+ export default function Home() {
4
+ return (
5
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
6
+
7
+ <header className="mb-12 text-center">
8
+ <h1 className="text-5xl font-extrabold">{{ .ProjectName }}</h1>
9
+ <p className="text-gray-600 text-lg mt-2">Your product tagline goes here.</p>
10
+ </header>
11
+
12
+ <main className="flex-grow flex flex-col items-center justify-center space-y-6">
13
+ <h2 className="text-3xl font-semibold">Welcome to {{ .ProjectName }}</h2>
14
+ <p className="text-gray-700 max-w-xl text-center">
15
+ This is your landing page. Customize this section to introduce your product,
16
+ service, or idea. Keep it simple and clear.
17
+ </p>
18
+
19
+ <a href="#"
20
+ className="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
21
+ Get Started
22
+ </a>
23
+ </main>
24
+
25
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
26
+ <div className="container mx-auto flex justify-between">
27
+ <div>
28
+ <h4 className="font-semibold">Quick Links</h4>
29
+ <ul className="space-y-2">
30
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
31
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
32
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
33
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
34
+ </ul>
35
+ </div>
36
+
37
+ <div className="flex space-x-4">
38
+ <a href="#" className="hover:text-gray-400">GitHub</a>
39
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
40
+ <a href="#" className="hover:text-gray-400">Twitter</a>
41
+ </div>
42
+ </div>
43
+
44
+ <div className="mt-4 text-center">
45
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
46
+ </div>
47
+ </footer>
48
+
49
+ </div>
50
+ );
51
+ }
@@ -0,0 +1,51 @@
1
+ import Image from "next/image";
2
+
3
+ export default function Home() {
4
+ return (
5
+ <div className="min-h-screen flex flex-col bg-gray-100 p-8">
6
+
7
+ <header className="mb-12 text-center">
8
+ <h1 className="text-5xl font-extrabold">{{ .ProjectName }}</h1>
9
+ <p className="text-gray-600 text-lg mt-2">Your product tagline goes here.</p>
10
+ </header>
11
+
12
+ <main className="flex-grow flex flex-col items-center justify-center space-y-6">
13
+ <h2 className="text-3xl font-semibold">Welcome to {{ .ProjectName }}</h2>
14
+ <p className="text-gray-700 max-w-xl text-center">
15
+ This is your landing page. Customize this section to introduce your product,
16
+ service, or idea. Keep it simple and clear.
17
+ </p>
18
+
19
+ <a href="#"
20
+ className="px-6 py-3 bg-blue-600 text-white rounded-lg shadow hover:bg-blue-700 transition">
21
+ Get Started
22
+ </a>
23
+ </main>
24
+
25
+ <footer className="bg-gray-800 text-white py-6 rounded-lg">
26
+ <div className="container mx-auto flex justify-between">
27
+ <div>
28
+ <h4 className="font-semibold">Quick Links</h4>
29
+ <ul className="space-y-2">
30
+ <li><a href="#" className="hover:text-gray-400">Home</a></li>
31
+ <li><a href="#" className="hover:text-gray-400">Store</a></li>
32
+ <li><a href="#" className="hover:text-gray-400">Download</a></li>
33
+ <li><a href="#" className="hover:text-gray-400">Blog</a></li>
34
+ </ul>
35
+ </div>
36
+
37
+ <div className="flex space-x-4">
38
+ <a href="#" className="hover:text-gray-400">GitHub</a>
39
+ <a href="#" className="hover:text-gray-400">LinkedIn</a>
40
+ <a href="#" className="hover:text-gray-400">Twitter</a>
41
+ </div>
42
+ </div>
43
+
44
+ <div className="mt-4 text-center">
45
+ <p className="text-sm">&copy; 2026 StartMeow.</p>
46
+ </div>
47
+ </footer>
48
+
49
+ </div>
50
+ );
51
+ }