@@ -3,13 +3,11 @@ import { LanguageProvider, useLanguage } from './context/LanguageContext';
33import Navbar from './components/Navbar' ;
44import HomeEN from './pages_en/Home' ;
55import PricesEN from './pages_en/Prices' ;
6- import CarouselEN from './pages_en/Carousel' ;
76import AboutEN from './pages_en/About' ;
87import ContactEN from './pages_en/Contact' ;
98import AppointmentEN from './pages_en/Appointment' ;
109import HomePL from './pages_pl/Home' ;
1110import PricesPL from './pages_pl/Prices' ;
12- import CarouselPL from './pages_pl/Carousel' ;
1311import AboutPL from './pages_pl/About' ;
1412import ContactPL from './pages_pl/Contact' ;
1513import AppointmentPL from './pages_pl/Appointment' ;
@@ -19,7 +17,6 @@ function AppContent() {
1917
2018 const Home = language === 'en' ? HomeEN : HomePL ;
2119 const Prices = language === 'en' ? PricesEN : PricesPL ;
22- const Carousel = language === 'en' ? CarouselEN : CarouselPL ;
2320 const About = language === 'en' ? AboutEN : AboutPL ;
2421 const Contact = language === 'en' ? ContactEN : ContactPL ;
2522 const Appointment = language === 'en' ? AppointmentEN : AppointmentPL ;
@@ -30,7 +27,6 @@ function AppContent() {
3027 < Routes >
3128 < Route path = "/" element = { < Home /> } />
3229 < Route path = "/prices" element = { < Prices /> } />
33- < Route path = "/carousel" element = { < Carousel /> } />
3430 < Route path = "/about" element = { < About /> } />
3531 < Route path = "/contact" element = { < Contact /> } />
3632 < Route path = "/appointment" element = { < Appointment /> } />
0 commit comments