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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">

# ColdByDefault Portfolio · V6.0.2
# ColdByDefault Portfolio · V6.0.3

Modern, secure, high‑performance developer portfolio built with Next.js 16, TypeScript, a strongly hardened edge-first architecture & multi‑locale SEO‑optimized delivery.

Expand Down
29 changes: 11 additions & 18 deletions app/(media)/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@
"use client";

import { Badge } from "@/components/ui/badge";
import { Card, CardContent } from "@/components/ui/card";
import { Card } from "@/components/ui/card";
//import { Card, CardContent } from "@/components/ui/card";
Comment on lines +9 to +10
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are several commented-out imports and large commented blocks left in the page. This makes the file harder to maintain and can hide accidental regressions. Prefer removing dead code entirely (or gating it behind a feature flag/config) rather than keeping commented code in the main branch.

Copilot uses AI. Check for mistakes.
import { Background } from "@/components/visuals/motion-background";
import { GitHubShowcase } from "@/components/github";
import type { AboutTranslations } from "@/types/configs/i18n";
import Image from "next/image";
import { motion } from "framer-motion";
//import { motion } from "framer-motion";
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are several commented-out imports and large commented blocks left in the page. This makes the file harder to maintain and can hide accidental regressions. Prefer removing dead code entirely (or gating it behind a feature flag/config) rather than keeping commented code in the main branch.

Copilot uses AI. Check for mistakes.
import { useTranslations } from "next-intl";

// Animation variants
const fadeInUp = {
/* const fadeInUp = {
hidden: { opacity: 0, y: 20 },
visible: { opacity: 1, y: 0 },
};
}; */
Comment on lines +18 to +21
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are several commented-out imports and large commented blocks left in the page. This makes the file harder to maintain and can hide accidental regressions. Prefer removing dead code entirely (or gating it behind a feature flag/config) rather than keeping commented code in the main branch.

Copilot uses AI. Check for mistakes.

const staggerChildren = {
/* const staggerChildren = {
hidden: { opacity: 0 },
visible: {
opacity: 1,
transition: {
staggerChildren: 0.1,
},
},
};
}; */

export default function AboutPage() {
const t = useTranslations("About");
Expand All @@ -42,7 +42,7 @@ export default function AboutPage() {
<Background />
<div className="relative z-10">
{/* Hero Section */}
<section className="pt-32 pb-20 px-4 lg:px-8">
<section className="pt-12 pb-20 px-4 lg:px-8">
<div className="max-w-6xl mx-auto">
<Card className="p-8 lg:p-12 bg-background/80 backdrop-blur-sm border-border/50 shadow-lg">
<div className="grid lg:grid-cols-2 gap-12 items-center">
Expand Down Expand Up @@ -95,7 +95,7 @@ export default function AboutPage() {
</section>

{/* Philosophy Section */}
<section className="py-20 px-4 lg:px-8">
{/* <section className="py-20 px-4 lg:px-8">
<div className="max-w-4xl mx-auto">
<Card className="p-10 bg-background/80 backdrop-blur-sm border-border/50 shadow-lg">
<motion.div
Expand All @@ -119,7 +119,7 @@ export default function AboutPage() {
</div>
</section>

{/* What I Deliver Section */}

<section className="py-20 px-4 lg:px-8">
<div className="max-w-6xl mx-auto">
<motion.div
Expand Down Expand Up @@ -151,14 +151,7 @@ export default function AboutPage() {
</div>
</motion.div>
</div>
</section>

{/* GitHub Showcase Section */}
<section className="py-20 px-4 lg:px-8" id="github">
<div className="max-w-6xl mx-auto">
<GitHubShowcase />
</div>
</section>
</section> */}
</div>
</div>
);
Expand Down
2 changes: 0 additions & 2 deletions app/(media)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import type { Metadata } from "next";
import { getLocale } from "next-intl/server";
import { generateMediaSectionSEO } from "@/lib/configs/seo";
import { QuickActions } from "@/components/quickActions";
import { Background } from "@/components/visuals";

export async function generateMetadata(): Promise<Metadata> {
Expand All @@ -23,7 +22,6 @@ export default function MediaGroupLayout({
}) {
return (
<div className="min-h-screen">
<QuickActions />
{children}
<Background />
</div>
Expand Down
17 changes: 0 additions & 17 deletions app/(media)/library/loading.tsx

This file was deleted.

29 changes: 0 additions & 29 deletions app/(media)/library/page.tsx

This file was deleted.

19 changes: 12 additions & 7 deletions app/(media)/projects/page.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
/**
* @author ColdByDefault
* @copyright 2026 ColdByDefault. All Rights Reserved.
*/

'use client';
import {ProjectsShowcase} from "@/components/projects";
*/

"use client";
import GitHubShowcase from "@/components/github/GitHubShowcase";
import { ProjectsShowcase } from "@/components/projects";

export default function LibraryPage() {
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The component name LibraryPage doesn’t match the route (/projects). Renaming it to something like ProjectsPage avoids confusion when debugging stack traces and React DevTools.

Suggested change
export default function LibraryPage() {
export default function ProjectsPage() {

Copilot uses AI. Check for mistakes.

return (
<div className="container mx-auto px-4 py-8">
<ProjectsShowcase className="py-12 px-4 sm:px-6 lg:px-8" />
<ProjectsShowcase className="py-8 px-4 sm:px-6 lg:px-8" />
{/* GitHub Showcase Section */}
<section className="pb-12 px-4 lg:px-8" id="github">
<div className="max-w-6xl mx-auto">
<GitHubShowcase />
</div>
</section>
Comment on lines +15 to +19
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This introduces a duplicate id=\"github\" in the DOM because GitHubShowcase itself renders a <section id=\"github\">.... Duplicate IDs can break anchor navigation and accessibility. Remove the wrapper id, or update GitHubShowcase to accept an optional id prop so only one element owns the anchor.

Copilot uses AI. Check for mistakes.
</div>
);
}
}
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export default async function RootLayout({
<NextIntlClientProvider messages={messages}>
<ThemeProvider
attribute="class"
defaultTheme="System"
defaultTheme="dark"
enableSystem
disableTransitionOnChange
>
Expand Down
22 changes: 0 additions & 22 deletions app/media/layout.tsx

This file was deleted.

16 changes: 0 additions & 16 deletions app/media/loading.tsx

This file was deleted.

16 changes: 0 additions & 16 deletions app/media/page.tsx

This file was deleted.

Loading
Loading