Skip to content

Commit cf1c8a7

Browse files
committed
✨ feat: 미변경된 FE측 정적 파일 경로 수정
1 parent 4f1d294 commit cf1c8a7

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

client/src/components/about/HeroSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const HeroSection = () => {
1717
<div className="text-center max-w-4xl">
1818
<div className="flex items-center justify-center space-x-2 mb-6">
1919
<img
20-
src="https://denamu.site/files/Denamu_Logo_ENG.svg"
20+
src="https://denamu.dev/files/Denamu_Logo_ENG.svg"
2121
alt="Denamu English Logo"
2222
className="w-32 md:w-52"
2323
/>
@@ -36,7 +36,7 @@ export const HeroSection = () => {
3636

3737
<div className="flex-grow flex items-start justify-center p-4 md:p-8">
3838
<img
39-
src="https://denamu.site/files/about-first.png"
39+
src="https://denamu.dev/files/about-first.png"
4040
alt="Service Preview"
4141
className="max-w-[90%] md:max-w-[80%] h-auto object-contain"
4242
/>

client/src/components/auth/AuthBanner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const AuthBanner = () => {
2626
animate={{ opacity: 1, y: 0 }}
2727
transition={{ duration: 0.5 }}
2828
>
29-
<img src={`https://denamu.site/files/denamu-icon.svg`} alt="Denamu" className="w-80 h-auto" />
29+
<img src={`https://denamu.dev/files/denamu-icon.svg`} alt="Denamu" className="w-80 h-auto" />
3030
</motion.div>
3131

3232
<motion.div

client/src/components/common/Card/PostAvatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function PostAvatar({ author, className, blogPlatform }: AvatarTy
1616
return (
1717
<Avatar className="h-8 w-8 ring-2 ring-background cursor-pointer">
1818
{isValidPlatform(blogPlatform) ? (
19-
<img src={`https://denamu.site/files/${blogPlatform}-icon.svg`} alt={author} className={className} />
19+
<img src={`https://denamu.dev/files/${blogPlatform}-icon.svg`} alt={author} className={className} />
2020
) : (
2121
<AvatarFallback className="text-xs bg-slate-200">{authorInitial}</AvatarFallback>
2222
)}

client/src/components/common/Card/detail/PostContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const PostContent = React.memo(({ post }: PostContentProps) => {
2929
<span className="text-lg font-semibold">{post.title}</span>
3030
<span className="text-sm text-gray-400 hover:underline flex gap-2 truncate">
3131
<img
32-
src={`https://denamu.site/files/${post.blogPlatform}-icon.svg`}
32+
src={`https://denamu.dev/files/${post.blogPlatform}-icon.svg`}
3333
alt={post.author}
3434
className="h-5 w-5 rounded-none"
3535
/>

client/src/components/common/Card/detail/ShareButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ type ButtonType = {
2121
shareKakao: () => void;
2222
};
2323
export default function ShareButton({ post }: { post: Post }) {
24-
const postUrl = `https://denamu.site/${post.id}`;
24+
const postUrl = `https://denamu.dev/${post.id}`;
2525
const { toast } = useCustomToast();
2626
const isMobile = useMediaStore((state) => state.isMobile);
2727

2828
const handleCopy = async () => {
2929
try {
30-
await navigator.clipboard.writeText(`https://denamu.site/${post.id}`);
30+
await navigator.clipboard.writeText(`https://denamu.dev/${post.id}`);
3131
toast(TOAST_MESSAGES.COPY_COMPLETE);
3232
} catch (error) {
3333
console.error(error);

client/src/components/profile/sidebar/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const Sidebar = () => {
1515
<div className="flex flex-col h-full">
1616
<div className="p-6 border-b border-gray-200">
1717
<div className="flex items-center space-x-2">
18-
<img src="https://denamu.site/files/denamu-icon.svg" alt="Denamu" className="w-10 h-auto" />
18+
<img src="https://denamu.dev/files/denamu-icon.svg" alt="Denamu" className="w-10 h-auto" />
1919
<span className="text-xl font-semibold">Denamu</span>
2020
</div>
2121
</div>

0 commit comments

Comments
 (0)