Skip to content

Commit

Permalink
feat: create WhatWeDo section on philosophy section
Browse files Browse the repository at this point in the history
  • Loading branch information
liang tzuyun authored and liang tzuyun committed Jan 21, 2025
1 parent ab4a352 commit 323645e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nextjs-app/app/about/philosophy/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Breadcrumb from "@/components/common/Breadcrumb";
import MarqueeTitle from "@/components/common/MarqueeTitle";
import WhatWeDo from "@/components/pages/about/philosophy/WhatWeDo";
import type { Metadata } from "next";

export const metadata: Metadata = {
Expand All @@ -11,6 +12,7 @@ export default async function PhilosophyPage() {
<div>
<Breadcrumb items={["HOME", "關於曼陀號", "曼陀號理念"]} />
<MarqueeTitle zhTitle="曼陀號理念" enTitle="Philosophy" />
<WhatWeDo />
</div>
);
}
31 changes: 31 additions & 0 deletions nextjs-app/components/pages/about/philosophy/WhatWeDo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import Image from "next/image";

const WhatWeDo = () => {
return (
<section className="px-5 md:px-10 py-[72px] md:py-[120px] bg-blue-8">
<div className="mx-auto text-center space-y-11">
<div className="flex flex-col items-center space-y-7">
<div className="space-y-3 text-h1 text-white">
<div>曼陀號領航計劃</div>
<div>The MentorShip Program</div>
</div>
<Image
src="/images/program-logo-without-border.png"
alt="program-logo"
width={120}
height={120}
/>
<div className="max-w-[684px] text-subtitle-lg text-white">
「曼陀號領航計劃」源自英文單字「Mentorship」,象徵我們共同乘坐一艘船,
在職涯這片茫茫大海中,成為彼此良師益友,航向更理想的未來。
<br />
我們致力打造水平與垂直的交流互動,提供橫跨職能、縱貫經驗的參加者跨出舒適圈的機會,
激盪職涯、甚至人生的不同可能性。
</div>
</div>
</div>
</section>
);
};

export default WhatWeDo;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 323645e

Please sign in to comment.