|
1 | 1 | import React, { useState, useEffect } from 'react'; |
2 | 2 | import { useParams } from 'react-router-dom'; |
3 | | -import EditorialNavbar from '../components/editorial-project/EditorialNavbar'; |
4 | | -import EditorialHero from '../components/editorial-project/EditorialHero'; |
5 | | -import EditorialTerminal from '../components/editorial-project/EditorialTerminal'; |
6 | | -import EditorialInstall from '../components/editorial-project/EditorialInstall'; |
7 | | -import EditorialSocial from '../components/editorial-project/EditorialSocial'; |
8 | | -import EditorialFooter from '../components/editorial-project/EditorialFooter'; |
9 | | -import EditorialDescription from '../components/editorial-project/EditorialDescription'; |
10 | | -import EditorialGridBackground from '../components/editorial-project/EditorialGridBackground'; |
11 | | -import { useProjects } from '../utils/projectParser'; |
12 | | -import Seo from '../components/Seo'; |
13 | | -import Loading from '../components/Loading'; |
| 3 | +import EditorialNavbar from '../../components/editorial-project/EditorialNavbar'; |
| 4 | +import EditorialHero from '../../components/editorial-project/EditorialHero'; |
| 5 | +import EditorialTerminal from '../../components/editorial-project/EditorialTerminal'; |
| 6 | +import EditorialInstall from '../../components/editorial-project/EditorialInstall'; |
| 7 | +import EditorialSocial from '../../components/editorial-project/EditorialSocial'; |
| 8 | +import EditorialFooter from '../../components/editorial-project/EditorialFooter'; |
| 9 | +import EditorialDescription from '../../components/editorial-project/EditorialDescription'; |
| 10 | +import EditorialGridBackground from '../../components/editorial-project/EditorialGridBackground'; |
| 11 | +import { useProjects } from '../../utils/projectParser'; |
| 12 | +import Seo from '../../components/Seo'; |
| 13 | +import Loading from '../../components/Loading'; |
14 | 14 |
|
15 | 15 | const EditorialProjectDetailsPage = () => { |
16 | 16 | const { slug } = useParams(); |
|
0 commit comments