Add agent workflows & stuff
Build and Push Next App / quality (push) Failing after 48s
Build and Push Next App / build-next (push) Has been skipped

This commit is contained in:
Gabriel Brown
2026-06-21 21:15:15 -05:00
parent cf7ff2ee4e
commit 2dfa97ee4f
102 changed files with 8488 additions and 161 deletions
+8 -3
View File
@@ -3,7 +3,10 @@
import { useState } from 'react';
import Link from 'next/link';
import { useRouter } from 'next/navigation';
import { AuthentikSignInButton } from '@/components/layout/auth/buttons';
import {
AuthentikSignInButton,
GitHubSignInButton,
} from '@/components/layout/auth/buttons';
import { useAuthActions } from '@convex-dev/auth/react';
import { zodResolver } from '@hookform/resolvers/zod';
import { ConvexError } from 'convex/values';
@@ -342,7 +345,8 @@ const SignIn = () => {
<Separator className='ml-3 py-0.5' />
</div>
</div>
<div className='mt-3 flex justify-center'>
<div className='mt-3 flex flex-col items-center gap-3'>
<GitHubSignInButton />
<AuthentikSignInButton />
</div>
</CardContent>
@@ -450,7 +454,8 @@ const SignIn = () => {
<Separator className='ml-3 py-0.5' />
</div>
</div>
<div className='mt-3 flex justify-center'>
<div className='mt-3 flex flex-col items-center gap-3'>
<GitHubSignInButton type='signUp' />
<AuthentikSignInButton type='signUp' />
</div>
</CardContent>