Skip to content

Commit c4f5c93

Browse files
committed
Refactor import paths in Home and Landing components
1 parent d5eac97 commit c4f5c93

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

client/dist/assets/index-9KsGJqp-.js renamed to client/dist/assets/index-gEHm4vvh.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link rel="icon" type="image" href="/logo.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>DevHub</title>
8-
<script type="module" crossorigin src="/assets/index-9KsGJqp-.js"></script>
8+
<script type="module" crossorigin src="/assets/index-gEHm4vvh.js"></script>
99
<link rel="stylesheet" crossorigin href="/assets/index-BaUmUz5n.css">
1010
</head>
1111
<body>

client/src/pages/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useEffect } from 'react';
22
import { useNavigate } from 'react-router-dom';
3-
import { Chat } from '../components/Chat/Chat';
3+
import { Chat } from '@/components/Chat/Chat.tsx';
44

55
const Home = () => {
66
const navigate = useNavigate();

client/src/pages/Landing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { HoverBorderGradient } from "@/components/ui/hover-border-gradient";
33
import Footer from '@/components/Footer/Footer';
4-
import { Navbar } from "../components/Navbar/Navbar";
4+
import { Navbar } from "@/components/Navbar/Navbar.tsx";
55
import { Hero } from '@/components/Hero/Hero';
66
import { Cover } from '@/components/ui/cover';
77
import { useEffect } from 'react';

0 commit comments

Comments
 (0)