Skip to content

Commit

Permalink
Refactor logo paths to use direct references for improved clarity and…
Browse files Browse the repository at this point in the history
… asset management
  • Loading branch information
Calpimm committed Jan 7, 2025
1 parent d88d501 commit a428bc8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions template-base/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import Link from 'next/link';
* Example logos. We use relative paths as if they're in `/public` folder:
*/
const LOGOS = [
{ src: 'nextjs-app-template/nodejs.svg', alt: 'Node.js' },
{ src: 'nextjs-app-template/react.svg', alt: 'React' },
{ src: 'nextjs-app-template/nextjs.svg', alt: 'Next.js' },
{ src: 'nextjs-app-template/typescript.svg', alt: 'TypeScript' },
{ src: 'nextjs-app-template/tailwindcss.svg', alt: 'Tailwind CSS' },
{ src: 'nodejs.svg', alt: 'Node.js' },
{ src: 'react.svg', alt: 'React' },
{ src: 'nextjs.svg', alt: 'Next.js' },
{ src: 'typescript.svg', alt: 'TypeScript' },
{ src: 'tailwindcss.svg', alt: 'Tailwind CSS' },
];

const GITHUB_LOGO = '/github-mark-white.svg';
const GITHUB_LOGO = 'github-mark-white.svg';

const containerVariants: Variants = {
hidden: { opacity: 0, scale: 0.8 },
Expand Down

0 comments on commit a428bc8

Please sign in to comment.