Skip to content

Commit fb1d083

Browse files
authored
fix(prettier): update cv-download-button.tsx
1 parent 9849664 commit fb1d083

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

components/cv-download-button.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
'use client';
22
import Link from 'next/link';
33
import Icons from './ui/icons';
4-
import { useTheme } from 'next-themes';
4+
// import { useTheme } from 'next-themes';
55
import { Button } from './ui/button';
66

77
export default function DownloadCV() {
88
// const { theme } = useTheme();
9-
const cv_url = '/assets/cv/DIego-C-Silva-CV - Estágio.pdf'
10-
// theme === 'dark'
11-
// ? '/assets/cv/Diego-C-Silva-CV-EN-Dark.pdf'
12-
// : theme === 'light'
13-
// ? '/assets/cv/Diego-C-Silva-CV-EN-Light.pdf'
14-
// : '/assets/cv/Diego-C-Silva-CV-EN-Light.pdf';
9+
const cv_url = '/assets/cv/DIego-C-Silva-CV - Estágio.pdf';
10+
// theme === 'dark'
11+
// ? '/assets/cv/Diego-C-Silva-CV-EN-Dark.pdf'
12+
// : theme === 'light'
13+
// ? '/assets/cv/Diego-C-Silva-CV-EN-Light.pdf'
14+
// : '/assets/cv/Diego-C-Silva-CV-EN-Light.pdf';
1515

1616
return (
1717
<Link className={'grow'} href={cv_url} target="_blank">

0 commit comments

Comments
 (0)