create-githat-app 1.8.12 → 1.8.13

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 (24) hide show
  1. package/package.json +1 -1
  2. package/templates/agent/app/(auth)/forgot-password/page.tsx.hbs +2 -0
  3. package/templates/agent/app/(auth)/sign-in/page.tsx.hbs +2 -0
  4. package/templates/agent/app/(auth)/sign-up/page.tsx.hbs +2 -0
  5. package/templates/classroom/app/(auth)/sign-in/page.tsx.hbs +2 -0
  6. package/templates/classroom/app/(auth)/sign-up/page.tsx.hbs +2 -0
  7. package/templates/content/app/(auth)/sign-in/page.tsx.hbs +2 -0
  8. package/templates/content/app/(auth)/sign-up/page.tsx.hbs +2 -0
  9. package/templates/dashboard/app/(auth)/sign-in/page.tsx.hbs +2 -0
  10. package/templates/dashboard/app/(auth)/sign-up/page.tsx.hbs +2 -0
  11. package/templates/fullstack/apps-web-nextjs/app/(auth)/forgot-password/page.tsx.hbs +2 -0
  12. package/templates/fullstack/apps-web-nextjs/app/(auth)/sign-in/page.tsx.hbs +2 -0
  13. package/templates/fullstack/apps-web-nextjs/app/(auth)/sign-up/page.tsx.hbs +2 -0
  14. package/templates/marketplace/app/(auth)/sign-in/page.tsx.hbs +2 -0
  15. package/templates/marketplace/app/(auth)/sign-up/page.tsx.hbs +2 -0
  16. package/templates/nextjs/app/(auth)/forgot-password/page.tsx.hbs +2 -0
  17. package/templates/nextjs/app/(auth)/sign-in/page.tsx.hbs +2 -0
  18. package/templates/nextjs/app/(auth)/sign-up/page.tsx.hbs +2 -0
  19. package/templates/plain/app/(auth)/sign-in/page.tsx.hbs +2 -0
  20. package/templates/plain/app/(auth)/sign-up/page.tsx.hbs +2 -0
  21. package/templates/portfolio/app/(auth)/sign-in/page.tsx.hbs +2 -0
  22. package/templates/portfolio/app/(auth)/sign-up/page.tsx.hbs +2 -0
  23. package/templates/saas/app/(auth)/sign-in/page.tsx.hbs +2 -0
  24. package/templates/saas/app/(auth)/sign-up/page.tsx.hbs +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-githat-app",
3
- "version": "1.8.12",
3
+ "version": "1.8.13",
4
4
  "description": "GitHat CLI — scaffold apps and manage the skills marketplace",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,8 @@
1
1
  {{#if includeForgotPassword}}
2
2
  import { ForgotPasswordForm } from '@githat/nextjs';
3
3
 
4
+ export const metadata = { title: 'Reset password — {{businessName}}' };
5
+
4
6
  export default function ForgotPasswordPage() {
5
7
  return (
6
8
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: 'var(--bg)' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,6 +1,8 @@
1
1
  {{#if includeForgotPassword}}
2
2
  import { ForgotPasswordForm } from '@githat/nextjs';
3
3
 
4
+ export const metadata = { title: 'Reset password — {{businessName}}' };
5
+
4
6
  export default function ForgotPasswordPage() {
5
7
  return (
6
8
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,6 +1,8 @@
1
1
  {{#if includeForgotPassword}}
2
2
  import { ForgotPasswordForm } from '@githat/nextjs';
3
3
 
4
+ export const metadata = { title: 'Reset password — {{businessName}}' };
5
+
4
6
  export default function ForgotPasswordPage() {
5
7
  return (
6
8
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignInForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign in — {{businessName}}' };
4
+
3
5
  export default function SignInPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>
@@ -1,5 +1,7 @@
1
1
  import { SignUpForm } from '@githat/nextjs';
2
2
 
3
+ export const metadata = { title: 'Sign up — {{businessName}}' };
4
+
3
5
  export default function SignUpPage() {
4
6
  return (
5
7
  <main {{#if useTailwind}}className="flex items-center justify-center min-h-screen bg-[#09090b]"{{else}}style=\{{ display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh', background: '#09090b' }}{{/if}}>