-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update image paths and chat authentication
- Fix electrical wiring image paths in gallery - Update portfolio project image format to webp - Fix OpenAI model name - Clean up Next.js cache
- Loading branch information
1 parent
466188b
commit cacd412
Showing
70 changed files
with
182 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
'use client' | ||
|
||
import { useRouter } from 'next/navigation' | ||
import { Button } from "@/components/ui/button" | ||
import { | ||
Dialog, | ||
DialogContent, | ||
DialogHeader, | ||
DialogTitle, | ||
DialogDescription, | ||
} from "@/components/ui/dialog" | ||
|
||
interface AuthDialogProps { | ||
open: boolean | ||
onOpenChange: (open: boolean) => void | ||
} | ||
|
||
export function AuthDialog({ open, onOpenChange }: AuthDialogProps) { | ||
const router = useRouter() | ||
|
||
return ( | ||
<Dialog open={open} onOpenChange={onOpenChange}> | ||
<DialogContent> | ||
<DialogHeader> | ||
<DialogTitle>Sign in Required</DialogTitle> | ||
<DialogDescription> | ||
Please sign in to use the chat feature. This helps us provide a better experience and protect our services. | ||
</DialogDescription> | ||
</DialogHeader> | ||
<div className="flex justify-end space-x-2"> | ||
<Button variant="secondary" onClick={() => onOpenChange(false)}> | ||
Close | ||
</Button> | ||
<Button onClick={() => router.push('/auth/sign-in')}> | ||
Sign In | ||
</Button> | ||
</div> | ||
</DialogContent> | ||
</Dialog> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"> | ||
<url><loc>https://chriscelaya.com/auth/sign-in</loc><lastmod>2024-12-01T06:31:53.250Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/about</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url> | ||
<url><loc>https://chriscelaya.com/case-studies</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url> | ||
<url><loc>https://chriscelaya.com/blog/hello-world</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/blog</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/auth/sign-up</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/chat</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/experience</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url> | ||
<url><loc>https://chriscelaya.com/audio-recorder</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/profile</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/gallery</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>1</priority></url> | ||
<url><loc>https://chriscelaya.com/resume</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/dashboard</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/skills</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/projects</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url> | ||
<url><loc>https://chriscelaya.com/audio</loc><lastmod>2024-12-01T06:31:53.252Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/audio-recorder</loc><lastmod>2024-12-01T09:21:37.998Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/blog/hello-world</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/auth/sign-up</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/case-studies</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url> | ||
<url><loc>https://chriscelaya.com/dashboard</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/profile</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/chat</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/about</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url> | ||
<url><loc>https://chriscelaya.com/gallery</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>1</priority></url> | ||
<url><loc>https://chriscelaya.com/resume</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/projects</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.9</priority></url> | ||
<url><loc>https://chriscelaya.com/skills</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/audio</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/experience</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url> | ||
<url><loc>https://chriscelaya.com/auth/sign-in</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
<url><loc>https://chriscelaya.com/blog</loc><lastmod>2024-12-01T09:21:38.000Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url> | ||
</urlset> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.