From c2be0dacda2919bd788c364671f9ae702576201b Mon Sep 17 00:00:00 2001 From: DIma <156229866+DimaDr777@users.noreply.github.com> Date: Thu, 30 Oct 2025 16:13:03 -0700 Subject: [PATCH] Update page.tsx Signed-off-by: DIma <156229866+DimaDr777@users.noreply.github.com> --- ipcwebsite/app/contact/page.tsx | 124 +++++++++++++++++++++++++++++++- 1 file changed, 123 insertions(+), 1 deletion(-) diff --git a/ipcwebsite/app/contact/page.tsx b/ipcwebsite/app/contact/page.tsx index 5eba51b..8c58f3f 100644 --- a/ipcwebsite/app/contact/page.tsx +++ b/ipcwebsite/app/contact/page.tsx @@ -1 +1,123 @@ -//dima work here \ No newline at end of file +//dima work here +import Link from "next/link"; +import stats from "../data/stats.json"; +import features from "../data/features.json"; + +export default function Contact() { + return ( +
+
+
+
+
+
+ {"// Welcome to the club"} +
+ +

+ Code, Compete, Create +

+ +

+ Join a community of passionate programmers. Master algorithms, + compete in USACO, ace APCSA, and build projects that have an impact. +

+ +
+ + Join the Club + + + View Projects + +
+
+
+
+
+
+
+ {stats.map((stat, index) => ( +
+
+ {stat.value} +
+
+ {stat.label} +
+
+ {stat.sublabel} +
+
+ ))} +
+
+
+
+
+
+

+ What We Offer +

+

+ Everything you need to excel in competitive programming and + software development +

+
+ +
+ {features.map((feature, index) => ( + +
{feature.icon}
+

+ {feature.title} +

+

+ {feature.description} +

+ + ))} +
+
+
+
+
+
+

+ Ready to Level Up Your Skills? +

+

+ Join our next meeting and meet fellow programmers who share your + passion for code +

+
+ + Get Started + + + Meet the Team + +
+
+
+
+
+
+ ); +}