Skip to content

Commit d5eac97

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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';
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";
55
import { Hero } from '@/components/Hero/Hero';
66
import { Cover } from '@/components/ui/cover';
77
import { useEffect } from 'react';

0 commit comments

Comments
 (0)