Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lakshmikanta Patra | FrontendFixer [&hearts;]</title>
<meta name="theme-color" content="#14b8a6" />

<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="src/main.tsx"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,16 @@
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"@radix-ui/react-slot": "^1.3.0",
"@reduxjs/toolkit": "^2.12.0",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"framer-motion": "^12.42.2",
"lucide-react": "^1.25.0",
"react": "^19.2.7",
"react-confetti-explosion": "^3.0.3",
"react-dom": "^19.2.7",
"react-helmet-async": "^3.0.0",
"react-redux": "^9.3.0",
"react-router-dom": "^7.18.1",
"tailwind-merge": "^3.6.0",
Expand Down
Binary file removed public/Lakshmikanta.pdf
Binary file not shown.
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/demo.webp
Binary file not shown.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
User-agent: *
Allow: /

Sitemap: https://frontendfixer.dev/sitemap.xml
21 changes: 21 additions & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "FrontendFixer",
"short_name": "FrontendFixer",
"description": "Full-Stack Developer for SaaS & MVPs",
"start_url": "/",
"display": "standalone",
"background_color": "#09090B",
"theme_color": "#14b8a6",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
8 changes: 8 additions & 0 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://frontendfixer.dev/</loc>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
</urlset>
Binary file added public/twitter-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 10 additions & 8 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import { Route, Routes } from 'react-router-dom';

import Weeding from '#routes/Weeding';
import { SEO } from '#/components/common/SEO';
import Navigation from '#routes/Navigation.tsx';

import Home from './routes/Home';
import Navigation from './routes/navigation';

const App = () => {
return (
<Routes>
<Route path="/" element={<Navigation />}>
<Route index element={<Home />} />
</Route>
<Route path="weeding" element={<Weeding />} />
</Routes>
<>
<SEO />
<Routes>
<Route path="/" element={<Navigation />}>
<Route index element={<Home />} />
</Route>
</Routes>
</>
);
};

Expand Down
Binary file added src/assets/images/portfolio/hero-dashboard.webp
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.
28 changes: 0 additions & 28 deletions src/components/AltHeroSection.tsx

This file was deleted.

40 changes: 0 additions & 40 deletions src/components/BackToTop.tsx

This file was deleted.

46 changes: 0 additions & 46 deletions src/components/Button.tsx

This file was deleted.

23 changes: 0 additions & 23 deletions src/components/CVDownloadButton.tsx

This file was deleted.

28 changes: 0 additions & 28 deletions src/components/Contact.tsx

This file was deleted.

11 changes: 0 additions & 11 deletions src/components/ContactCapsule.tsx

This file was deleted.

Loading
Loading