Skip to content

Commit

Permalink
Merge pull request #10 from 3um-Group/clone-design
Browse files Browse the repository at this point in the history
Clone design
  • Loading branch information
ganesh-3um authored Jun 30, 2024
2 parents d723f6e + 21162ce commit 52cc23c
Show file tree
Hide file tree
Showing 46 changed files with 71,117 additions and 347 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

# next.js
/.next/


/out/

# production
Expand Down
165 changes: 165 additions & 0 deletions app/(root)/investors/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
// import "./page.css";
import img1 from '@/public/assets/img1.png';
import img2 from '@/public/assets/img2.jpeg';

import Image from 'next/image';



interface PageHeaderProps {
title: string;
description: string;
}

const PageHeader: React.FC<PageHeaderProps> = ({ title, description }) => {
return (

<section className="px-6 py-16 md:py-24 lg:py-32">
<div className="mx-auto max-w-container relative md:lg:max-w-6xl lg:max-w-6xl">
<div>
<div className="-mx-4 flex flex-wrap items-center">
<div className="w-full lg:w-1/2">
<h1 className="text-3xl text-center md:lg:text-left sm:text-5xl">
Welcome Investors
</h1>
</div>
<div className="w-full lg:w-1/2">
<p className="max-w-3xl mx-auto mt-4 text-lg text-justify">
Join us in shaping the future with our groundbreaking
intelligent ecosystem. Discover opportunities for investment and
growth within the 3UM ecosystem.
</p>
</div>
</div>
</div>
</div>
</section>
);
};

const ImageSection: React.FC = () => {
return (
<section className="px-6">
<div className="w-full max-w-6xl mx-auto relative">
<div className="shadow rounded-xl">
<div className="grid overflow-hidden rounded-xl">
<Image
src={img1}
alt="Stock Market"
/>
</div>
</div>
</div>
</section>
);
}

interface InstitutionalInvestorsProps {
eyebrow: string;
title: string;
description: string;
returnsTitle: string;
returnsDescription: string;
alignmentTitle: string;
alignmentDescription: string;
}

const InstitutionalInvestorsSection: React.FC<InstitutionalInvestorsProps> = ({
eyebrow,
title,
description,
firstTitle,
returnsTitle,
returnsDescription,
alignmentTitle,
alignmentDescription,
}) => {
return (
<section
aria-labelledby={`Headers-Eyebrow-${eyebrow}`}
className="px-6 py-16 md:py-24 lg:py-32"
>
{/* image col */}
<div className="mx-auto max-w-container relative md:lg:max-w-6xl lg:max-w-6xl">
<div className="mb-4">
<h2 className="text-lg font-semibold uppercase tracking-widest mb-2">
{eyebrow}
</h2>
<h3 className="text-2xl mb-4 text-justify">{title}</h3>
</div>
<div className="grid lg:gap-8 lg:grid-cols-2 py-12 lg:items-center">
<div className="mt-10 lg:mt-0">
<Image
src={img2}
alt="Stock"
/>
</div>

<div className="mt-4 space-y-12">
<div className="flex">
<div className="ml-4">
<h4 className="text-2xl font-bold">{firstTitle}</h4>
<p className="mt-2 text-justify">
{description}
</p>
</div>
</div>

<div className="flex">
<div className="ml-4">
<h4 className="text-2xl font-bold">{returnsTitle}</h4>
<p className="mt-2 text-justify">
{" "}
{returnsDescription}
</p>
</div>
</div>

<div className="flex">
<div className="ml-4">
<h4 className="text-2xl font-bold">{alignmentTitle}</h4>
<p className="mt-2 text-justify">
{alignmentDescription}
</p>
</div>
</div>
</div>
</div>
</div>


</section>
);
};
const page = () => {
return (
<main id="primary" className="site__main site-main">
<div className="default-page default-page--content-only">
<div className="pt-0 pb-0">
<div className="sm:px-0">
<PageHeader
title="Institutional Investors"
description="We invest on behalf of the world’s largest institutional investors, including endowments, sovereign wealth funds and pension funds that provide retirement benefits for over 100 million teachers, firefighters, nurses and others."
/>

<ImageSection/>


<InstitutionalInvestorsSection
eyebrow=" Investor Overview"
title="At 3UM, we are committed to providing our investors with the information and resources they need to make informed decisions. Explore our investor relations and learn about our mission, vision, and strategic initiatives."
firstTitle="Our Mission"
description="At 3UM, our mission is to revolutionize industries by integrating advanced technologies like AI, blockchain, and quantum computing into a cohesive, intelligent ecosystem. Our commitment is to foster a future where technology enhances human capabilities, driving sustainable growth and creating new opportunities for all. Through our ecosystem, we strive to set new standards for excellence, collaboration, and ethical practices, ensuring a positive impact on communities and industries worldwide."
returnsTitle="Strategic Initiatives"
returnsDescription="At 3UM, we focus on several key projects and areas that drive our mission forward. Our strategic initiatives encompass cutting-edge technological advancements and behind-the-scenes projects aimed at integrating AI, blockchain, and quantum computing into our intelligent ecosystem. These initiatives are designed to foster innovation, enhance security, and provide seamless connectivity across various applications and industries. By focusing on these critical areas, we aim to create transformative solutions that not only meet the current needs of businesses but also anticipate future challenges and opportunities."
alignmentTitle="Growth Opportunities"
alignmentDescription="At 3UM, we are committed to unlocking potential areas for growth and innovation within our intelligent ecosystem. Our strategic focus includes expanding our technological capabilities in AI, blockchain, and quantum computing, while continuously enhancing the integration and performance of these technologies. We are actively exploring new market segments and developing groundbreaking solutions to address the evolving needs of various industries. Additionally, we seek data center partners worldwide to strengthen our infrastructure and support our global expansion. By investing in research and development, fostering strategic partnerships, and leveraging our robust infrastructure, we aim to create transformative opportunities that drive sustainable growth and deliver significant value to our stakeholders. Join us as we pioneer the future of technology and build a more intelligent, connected world."
/>
</div>
</div>
</div>
</main>
);
};

export default page;
10 changes: 6 additions & 4 deletions app/(root)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<div>
<Header />
<div className="flex flex-col min-h-screen">
<Header />
<main className="flex-grow">
{children}
<Footer />
</div>
</main>
<Footer />
</div>


);
Expand Down
Loading

0 comments on commit 52cc23c

Please sign in to comment.