Skip to content

Commit

Permalink
Merge pull request #42 from Bloceducare/development
Browse files Browse the repository at this point in the history
  • Loading branch information
codeWhizperer authored Oct 7, 2023
2 parents b654caf + 42e7390 commit 9e9466f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type Icard = {
link: string;
};

const Card = ({ title, desc, more }: Icard) => {
const Card = ({ title, desc, more,link }: Icard) => {
return (
<div className="bg-header shadow-lg rounded-lg flex flex-col h-full">
<div className="p-6 flex-grow">
Expand All @@ -19,7 +19,7 @@ const Card = ({ title, desc, more }: Icard) => {
</p>
</div>
<div className="shaow-lg p-6 border border-t-2">
<a target="_blank" className="text-[#053758] underline font-[700] text-[20px] leading-[27px]" href="#" rel="noopener noreferrer">
<a target="_blank" className="text-[#053758] underline font-[700] text-[20px] leading-[27px]" href={link} rel="noopener noreferrer">
{more}
</a>
</div>
Expand All @@ -37,14 +37,14 @@ function About() {
title="Our Goal"
desc="At Web3bridge, we believe education is critical in the drive for adoption of blockchain technology. And we have set up Web3 Lagos conference to bring education across varying topics/subjects and comprehension of blockchain technology and its core infrastructure."
more={`Learn more`}
link="#"
link="https://www.web3bridge.com/"
/>

<Card
title="Event Overview"
desc="Web3 Lagos Conference is a 3-day physical and virtual event comprising of hackathon, workshops, networking, career fair, panel session, talks, etc. The event focuses on onboarding and supporting the growth of individual new to the concept of blockchain and decentralisation, helping technical and non-technical blockchain native persons realise the endless possibilities and opportunities of the Blockchain & Ethereum ecosystem."
more="Visit X (Twitter) to Learn more"
link={`#`}
link={`https://twitter.com/Web3Bridge`}
/>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions components/Gallery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Gallery = () => {
<a
target="_blank"
rel="noopener noreferrer"
href="#"
href="https://docs.google.com/document/d/11RWT18bAajPigJg_o39Kg2XM8BWaaw3D22KdJ9OTooA/edit?usp=sharing"
>
Link Here
</a>
Expand All @@ -42,7 +42,7 @@ const Gallery = () => {
<a
target="_blank"
rel="noopener noreferrer"
href="#"
href="https://docs.google.com/document/d/1JdcvII6U_3O6FQngIkaEVIDiOMMmaiMGotslBygbL-0/edit?usp=sharing"
>
Link Here
</a>
Expand Down

0 comments on commit 9e9466f

Please sign in to comment.