diff --git a/next.config.ts b/next.config.ts index 13db92c..81c097a 100644 --- a/next.config.ts +++ b/next.config.ts @@ -27,6 +27,12 @@ const nextConfig: NextConfig = { port: "", pathname: "/**" }, + { + protocol: "http", + hostname: "localhost", + port: "3001", + pathname: "/**" + } ] }, }; diff --git a/public/assets/avatars/profile.JPG b/public/assets/avatars/profile.JPG new file mode 100644 index 0000000..64ec9a8 Binary files /dev/null and b/public/assets/avatars/profile.JPG differ diff --git a/public/assets/avatars/profile.webp b/public/assets/avatars/profile.webp new file mode 100644 index 0000000..a31ff4d Binary files /dev/null and b/public/assets/avatars/profile.webp differ diff --git a/src/app/(web)/(home)/page.tsx b/src/app/(web)/(home)/page.tsx index b9184f3..245e37e 100644 --- a/src/app/(web)/(home)/page.tsx +++ b/src/app/(web)/(home)/page.tsx @@ -5,6 +5,7 @@ import { metadata as meta } from './data/meta'; import { AboutTimeline } from './sections/timeline'; import { Footer } from '@/components/ui/footer'; import { AboutMeSection } from './sections/home-aboutme'; +import { ContactBar } from './sections/contact-bar'; export const metadata: Metadata = meta @@ -19,7 +20,6 @@ export default function HomePage() { -