Skip to content

Commit

Permalink
Merge pull request #56 from hicsail/bugfix
Browse files Browse the repository at this point in the history
feat: bugfix
  • Loading branch information
QJWork authored Aug 28, 2024
2 parents cf0170c + 3f29526 commit a1beb14
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/pages/About.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import { IonCard, IonCardHeader, IonContent, IonPage } from "@ionic/react";
import DualColumnImageText from "../components/DualColumnImageText";
import DualColumnText from "../components/DualColumnText";
import Profile from "../components/Profile";
import { IonPage, IonContent } from "@ionic/react";
import PaddedHeaderText from "../components/PaddedHeaderText";
import AboutMissionSection from "../components/AboutMissionSection";
import AboutTeamProfiles from "../components/AboutTeamProfiles";
Expand All @@ -10,12 +7,15 @@ import Footer from "../components/Footer";

const About: React.FC = () => {
return (
<div className="pt-36 md:pt-12 mb-48">
<PaddedHeaderText />
<AboutMissionSection />
<AboutTeamProfiles />
<AboutFutureVisionSections />
</div>
<IonPage>
<IonContent className="pt-36 md:pt-12 mb-48">
<PaddedHeaderText />
<AboutMissionSection />
<AboutTeamProfiles />
<AboutFutureVisionSections />
<Footer />
</IonContent>
</IonPage>
);
};

Expand Down

0 comments on commit a1beb14

Please sign in to comment.