Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #195

Merged
merged 6 commits into from
Feb 12, 2025
Merged

Dev #195

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/blog/images/CustomisedHistogram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/blog/images/Desc_R_cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/blog/images/Histogram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 28 additions & 28 deletions src/routes/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,33 @@ const Sponsors = () => {
};

const goldInfo: SponsorProps[] = [
{
tier: "Gold",
image: bitgetLogo,
sponsor: "Bitget",
desc: "Established in 2018, Bitget is a global cryptocurrency exchange and Web3 company, serving over 20 million users in 100+ countries and regions. Together with Bitget Wallet - a world-class multi-chain crypto wallet that features swap, NFTs, DApps and more. Bitget wants to inspire everyone to embrace crypto, partnering with the likes of Argentinian footballer Lionel Messi and eSports event organiser PGL.",
button: "Visit website",
website: "https://partner.bitget.com/bg/KEHLYS_HackMelb",
},
// {
// tier: "Gold",
// image: bitgetLogo,
// sponsor: "Bitget",
// desc: "Established in 2018, Bitget is a global cryptocurrency exchange and Web3 company, serving over 20 million users in 100+ countries and regions. Together with Bitget Wallet - a world-class multi-chain crypto wallet that features swap, NFTs, DApps and more. Bitget wants to inspire everyone to embrace crypto, partnering with the likes of Argentinian footballer Lionel Messi and eSports event organiser PGL.",
// button: "Visit website",
// website: "https://partner.bitget.com/bg/KEHLYS_HackMelb",
// },
];

const silverInfo: SponsorProps[] = [
{
tier: "Silver",
image: noMossLogo,
sponsor: "No Moss",
desc: "No Moss is a multi-disciplinary consultancy delivering bespoke agility transformation, purposeful product innovation, and empathy-led technology development.",
button: "Visit website",
website: "https://nomoss.co/",
},
{
tier: "Silver",
image: superNormalLogo,
sponsor: "Supernormal",
desc: "Cutting-edge technology woven into every fabric of your brand. Utilise our world-class application of technology, automation, and growth strategies.",
button: "Visit website",
website: "https://www.snl-labs.com/",
},
// {
// tier: "Silver",
// image: noMossLogo,
// sponsor: "No Moss",
// desc: "No Moss is a multi-disciplinary consultancy delivering bespoke agility transformation, purposeful product innovation, and empathy-led technology development.",
// button: "Visit website",
// website: "https://nomoss.co/",
// },
// {
// tier: "Silver",
// image: superNormalLogo,
// sponsor: "Supernormal",
// desc: "Cutting-edge technology woven into every fabric of your brand. Utilise our world-class application of technology, automation, and growth strategies.",
// button: "Visit website",
// website: "https://www.snl-labs.com/",
// },
];

const bronzeInfo: SponsorProps[] = [
Expand Down Expand Up @@ -128,7 +128,7 @@ const Sponsors = () => {

{/* Silver */}

<section>
{/* <section>
<h2 className="text-4xl text-center font-extrabold mt-28 mb-9">{sponsorTitles[1]}</h2>
{silverInfo.length > 0 ? (
<div className="grid grid-rows-1 md:grid-cols-2 justify-items-center gap-5 w-[350px] md:w-11/12 md:max-w-[1020px] m-auto">
Expand All @@ -139,10 +139,10 @@ const Sponsors = () => {
) : (
<SponsorsEmpty tier="silver" button="Learn more" link={sponsorCTA.link}></SponsorsEmpty>
)}
</section>
</section> */}

{/* Bronze */}
<section>
{/* <section>
<h2 className="text-4xl text-center font-extrabold mt-28 mb-9">{sponsorTitles[2]}</h2>
{bronzeInfo.length > 0 ? (
<div className="grid grid-rows-3 lg:grid-rows-1 lg:grid-cols-3 w-max h-max m-auto border border-white rounded-xl overflow-hidden">
Expand All @@ -153,7 +153,7 @@ const Sponsors = () => {
) : (
<SponsorsEmpty tier="bronze" button="Learn more" link={sponsorCTA.link}></SponsorsEmpty>
)}
</section>
</section> */}

{/* Community NOT USED*/}
{/* <section>
Expand Down
22 changes: 21 additions & 1 deletion src/routes/blogs/BlogsData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import pythonImg from "../../assets/blog/images/python.png";
import gitcover from "../../assets/blog/images/git_tutorial_cover.png";
import GitBlog from "./Gittutorial.mdx";
import TemplateBlog from "./TemplateBlog.mdx";
import DescRblog from "./IntroToStats.mdx";
import rcover from "../../assets/blog/images/Desc_R_cover.png";


export interface BlogInterface {
title: string;
Expand Down Expand Up @@ -36,7 +39,7 @@ export const BlogsData: BlogInterface[] = [
{
articleId: 2,
title: "Introduction to Using Git/Github",
description: "A quick summary of the Basics of Using Git/Github",
description: "",
tags: ["Git", "programming", "beginner"],
articleImage: gitcover,
time: "25 August 2024",
Expand All @@ -46,4 +49,21 @@ export const BlogsData: BlogInterface[] = [
BlogComponent: GitBlog,
hidden: false,
},


{
articleId: 3,
title: "Introduction to Statistics in R",
description: "",
tags: ["R", "programming", "beginner"],
articleImage: rcover,
time: "8th September 2024",
author: "Anshan Arnott-Tan",
fileName: "IntroToStats.mdx",
url: "Intro-To-Stats",
BlogComponent: DescRblog,
hidden: false,
},


];
Loading
Loading