Skip to content

Commit

Permalink
Merge pull request #37 from chiscookeke11/main
Browse files Browse the repository at this point in the history
CREATED CODE-OF-ETHICS PAGE
  • Loading branch information
ONEONUORA authored Jan 24, 2025
2 parents 95f7a68 + 8a27076 commit d72aef5
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 74 additions & 0 deletions src/app/code-of-ethics/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
import Footer from "@/components/Footer";
import Navbar from "@/components/Navbar";

const featureCard = [
{
name: "Integrity",
content:
"Users must provide truthful and accurate information during account creation, course participation, and job applications. Institutions and tutors are expected to maintain high standards of integrity in course creation and exam hosting.",
},
{
name: "Transparency",
content:
"SkillNet commits to providing a transparent system where certifications, exam results, and transactions are verifiable and tamper-proof.",
},
{
name: "Accountability",
content:
"Employers, tutors, and institutions are accountable for the accuracy of their job postings, courses, and exam content. Users are responsible for adhering to platform guidelines.",
},
{
name: "Respect and Professionalism",
content:
"Users must interact respectfully within the platform, avoiding inappropriate conduct or communications.",
},
{
name: "Fairness",
content:
"All users are treated equally and provided equal opportunities to benefit from SkillNet’s features. Discrimination or misuse will not be tolerated.",
},
{
name: "Compliance",
content:
"All platform users must comply with applicable laws, regulations, and the terms outlined by SkillNet.",
},
];

export default function CodeOfEthics() {
return (
<>
<Navbar />

<div
className={`w-full min-h-screen bg-transparent flex flex-col items-center justify-center gap-5 px-4 my-6 py-6 `}
>
<h1 className="text-[#EAEDE7] font-bold text-5xl text-center ">
Code of Ethics
</h1>
<p className="text-base font-light text-[#80837E] text-center ">
Guiding Principles That Define Our Values and Commitments.
</p>
<div className="featurecard-wrapper grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4 px-10 my-7 mt-9 ">
{featureCard.map((card, index) => (
<div
key={index}
className="bg-[#101110] border border-[#222220] px-7 py-6 rounded-[15px] max-w-[398px] sm:h-auto lg:min-h-[244px] "
>
<span className="flex items-center justify-start w-full gap-2 mb-3">
<h2 className="text-lg font-medium text-[#EAEDE7] my-4 ">
{card.name}
</h2>{" "}
</span>

<p className="text-base font-light text-[#898783] ">
{card.content}
</p>
</div>
))}
</div>
</div>

<Footer />
</>
);
}
3 changes: 0 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import type { Metadata } from "next";
// import { Inter } from "next/font/google";
import "./globals.css";
import { Providers } from "../components/providers";

// const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "SkillNet",
description:
Expand Down

0 comments on commit d72aef5

Please sign in to comment.