-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved the ui and added new sections
- Loading branch information
1 parent
2883f81
commit 153d05a
Showing
33 changed files
with
693 additions
and
343 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?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://muhammadfiaz.com/robots.txt</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/manifest.webmanifest</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/robots.txt</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/about</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/home</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/blog</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/projects</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/home</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
<url><loc>https://muhammadfiaz.com/about</loc><changefreq>daily</changefreq><priority>1</priority></url> | ||
</urlset> |
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 |
---|---|---|
@@ -1,35 +1,34 @@ | ||
"use client"; | ||
import { siteConfig } from '@/src/configs/config'; | ||
import Link from 'next/link'; | ||
import AnimationContainer from '@/src/components/utils/AnimationContainer'; | ||
|
||
export default function NotFound() { | ||
return ( | ||
<div className="min-h-screen flex flex-col items-center justify-center text-white"> | ||
<h1 className="text-6xl font-extrabold text-white mb-6">404</h1> | ||
<p className="text-2xl text-gray-400 mb-4"> | ||
Oops! The page you're looking for doesn't exist. | ||
</p> | ||
<p className="text-lg text-gray-500 mb-8"> | ||
The page might have been moved or deleted, or the URL may be incorrect. | ||
</p> | ||
<div className="flex items-center justify-center gap-4"> | ||
<Link | ||
href="/" | ||
className="px-6 py-3 bg-blue-600 text-lg text-white rounded-lg hover:bg-blue-700 transition duration-300" | ||
> | ||
Go Back Home | ||
</Link> | ||
<Link | ||
href={`${siteConfig.social.github}/portfolio/issues/new`} | ||
className="px-6 py-3 bg-green-600 text-lg text-white rounded-lg hover:bg-green-700 transition duration-300" | ||
> | ||
Report a Bug | ||
</Link> | ||
</div> | ||
<div className="mt-12"> | ||
<p className="text-sm text-gray-500"> | ||
© 2024 {siteConfig.author}. All Rights Reserved. | ||
<AnimationContainer customClassName="w-full"> | ||
<div className="min-h-screen flex flex-col items-center justify-center text-white px-4 sm:px-6 lg:px-8"> | ||
<h1 className="text-6xl sm:text-7xl font-extrabold text-white mb-6">404</h1> | ||
<p className="text-2xl sm:text-3xl text-gray-400 mb-4 text-center"> | ||
Oops! The page you're looking for doesn't exist. | ||
</p> | ||
<p className="text-lg sm:text-xl text-gray-500 mb-8 text-center"> | ||
The page might have been moved or deleted, or the URL may be incorrect. | ||
</p> | ||
<div className="flex flex-col sm:flex-row items-center justify-center gap-4"> | ||
<Link | ||
href="/home" | ||
className="px-6 py-3 bg-black text-white dark:bg-white dark:text-black hover:bg-gray-800 dark:hover:bg-gray-200 text-lg sm:text-xl rounded-lg transition-all duration-300 transform hover:scale-105 hover:shadow-lg w-full sm:w-auto text-center" | ||
> | ||
Go Back Home | ||
</Link> | ||
<Link | ||
href={`https://github.com/${siteConfig.social.github}/portfolio/issues/new`} | ||
className="px-6 py-3 bg-black text-white dark:bg-white dark:text-black hover:bg-gray-800 dark:hover:bg-gray-200 text-lg sm:text-xl rounded-lg transition-all duration-300 transform hover:scale-105 hover:shadow-lg w-full sm:w-auto text-center" | ||
> | ||
Report a Bug | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</AnimationContainer> | ||
); | ||
} |
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
Oops, something went wrong.