Skip to content

Commit

Permalink
path changes
Browse files Browse the repository at this point in the history
  • Loading branch information
OchiengPaul442 committed Feb 28, 2025
1 parent 53b9560 commit 9ebacc3
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import AboutPage from '../../../views/cleanAirForum/about/AboutPage';
import AboutPage from '@/views/cleanairforum/about/AboutPage';

export const metadata: Metadata = {
title: 'About Clean Air Forum | AirQo',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/glossary/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import GlossaryPage from '../../../views/cleanAirForum/glossary/GlossaryPage';
import GlossaryPage from '@/views/cleanairforum/glossary/GlossaryPage';

export const metadata: Metadata = {
title: 'Glossary | Clean Air Forum',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import mainConfig from '@/configs/mainConfigs';
import { ForumDataProvider } from '@/context/ForumDataContext';
import { useForumEventDetails, useForumEventTitles } from '@/hooks/useApiHooks';

import BannerSection from '../../views/cleanAirForum/BannerSection';
import BannerSection from '../../views/cleanairforum/BannerSection';

type CleanAirLayoutProps = {
children: ReactNode;
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/logistics/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import LogisticsPage from '../../../views/cleanAirForum/logistics/LogisticsPage';
import LogisticsPage from '@/views/cleanairforum/logistics/LogisticsPage';

export const metadata: Metadata = {
title: 'Logistics | Clean Air Forum',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/partners/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import PartnersPage from '../../../views/cleanAirForum/partners/PartnersPage';
import PartnersPage from '@/views/cleanairforum/partners/PartnersPage';

export const metadata: Metadata = {
title: 'Partners | Clean Air Forum | AirQo',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import CommitteePage from '../../../views/cleanAirForum/program-committee/CommitteePage';
import CommitteePage from '@/views/cleanairforum/program-committee/CommitteePage';

export const metadata: Metadata = {
title: 'Program Committee | Clean Air Forum | AirQo',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/resources/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import ResourcesPage from '../../../views/cleanAirForum/resources/ResourcesPage';
import ResourcesPage from '@/views/cleanairforum/resources/ResourcesPage';

export const metadata: Metadata = {
title: 'Resources | Clean Air Forum | AirQo',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/sessions/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import ProgramsPage from '../../../views/cleanAirForum/sessions-programs/ProgramsPage';
import ProgramsPage from '@/views/cleanairforum/sessions-programs/ProgramsPage';

export const metadata: Metadata = {
title: 'Sessions & Programs | Clean Air Forum | AirQo',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/speakers/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import SpeakersPage from '../../../views/cleanAirForum/speakers/SpeakersPage';
import SpeakersPage from '@/views/cleanairforum/speakers/SpeakersPage';

export const metadata: Metadata = {
title: 'Speakers | Clean Air Forum | AirQo',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/app/clean-air-forum/sponsorships/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Metadata } from 'next';

import SponsorshipPage from '../../../views/cleanAirForum/sponsorship/SponsorshipPage';
import SponsorshipPage from '@/views/cleanairforum/sponsorship/SponsorshipPage';

export const metadata: Metadata = {
title: 'Sponsorship | Clean Air Forum | AirQo',
Expand Down
2 changes: 1 addition & 1 deletion src/website2/src/views/cleanairforum/about/AboutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Divider, NoData } from '@/components/ui';
import { useForumData } from '@/context/ForumDataContext';
import { isValidHTMLContent } from '@/utils/htmlValidator';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';

type SectionRowProps = {
title: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useForumData } from '@/context/ForumDataContext';
import { ForumEvent } from '@/types/forum';
import { isValidGlossaryContent } from '@/utils/glossaryValidator';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';

const GlossaryPage = () => {
// Access data from the context.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Divider } from '@/components/ui';
import { useForumData } from '@/context/ForumDataContext';
import { isValidHTMLContent } from '@/utils/htmlValidator';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';

const LogisticsPage = () => {
// Destructure the selected event from the context.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Divider } from '@/components/ui';
import { useForumData } from '@/context/ForumDataContext';
import { isValidHTMLContent } from '@/utils/htmlValidator';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';
import PaginatedSection from '@/views/cleanAirNetwork/PaginatedSection';

const PartnersPage = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Divider, MemberCard, Pagination } from '@/components/ui/';
import { useForumData } from '@/context/ForumDataContext';
import { isValidHTMLContent } from '@/utils/htmlValidator';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';

const CommitteePage = () => {
// Always call useForumData to get the selectedEvent.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Divider } from '@/components/ui';
import { useForumData } from '@/context/ForumDataContext';
import { isValidHTMLContent } from '@/utils/htmlValidator';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';

interface AccordionItemProps {
title: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Divider, MemberCard, Pagination } from '@/components/ui/';
import { useForumData } from '@/context/ForumDataContext';
import { isValidHTMLContent } from '@/utils/htmlValidator';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';

const SpeakersPage = () => {
// Now we use the selectedEvent from context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import React from 'react';
import { Divider } from '@/components/ui';
import { useForumData } from '@/context/ForumDataContext';
import { renderContent } from '@/utils/quillUtils';
import SectionDisplay from '@/views/cleanAirForum/SectionDisplay';
import SectionDisplay from '@/views/cleanairforum/SectionDisplay';
import PaginatedSection from '@/views/cleanAirNetwork/PaginatedSection';

const SponsorshipPage = () => {
Expand Down

0 comments on commit 9ebacc3

Please sign in to comment.