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

Swpn0neel dev #466

Closed
wants to merge 9 commits into from
Closed
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
9 changes: 3 additions & 6 deletions src/components/Hacktoberfest.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,15 @@ import useBaseUrl from "@docusaurus/useBaseUrl";
export const Hacktoberfest = () => {
return (
<section className="mb-14 mt-1">
<h2 className="mt-8 text-2xl font-semibold tracking-wide md:text-3xl">
Keploy Hacktoberfest Guide
</h2>
<img
className="mt-8 "
src="https://raw.githubusercontent.com/Sonichigo/crdb_keploy/main/Simple%20Technology%20Blog%20Banner%20(1).png?raw=true"
alt={"hacktoberfest-2023"}
src="https://raw.githubusercontent.com/Sonichigo/crdb_keploy/refs/heads/main/hacktoberfest.png?raw=true"
alt={"hacktoberfest-2024"}
/>
<div className="mt-10 grid grid-cols-1 gap-20 md:grid-cols-2">
<a
className=" scale flex flex-col items-center justify-center space-y-3 rounded-lg bg-[color:orange] p-4 text-center shadow-lg"
href="https://github.com/keploy/keploy/issues?q=is%3Aissue+is%3Aopen+label%3Ahacktoberfest2023"
href="https://github.com/keploy/keploy/issues?q=is%3Aissue+is%3Aopen+label%3Ahacktoberfest2024"
>
<p className="text-lg font-semibold">Active Issues</p>
</a>
Expand Down
7 changes: 5 additions & 2 deletions src/components/QuickStart.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import Link from "@docusaurus/Link";
import useBaseUrl from "@docusaurus/useBaseUrl";

import {Hacktoberfest} from "./Hacktoberfest";
export const QuickStart = () => {
return (
<section className="mt-1">
Expand Down Expand Up @@ -30,6 +30,8 @@ export const QuickStart = () => {
<h2 className="mt-8 text-2xl font-semibold tracking-wide md:text-3xl">
Contribute through Hacktoberfest ✅
</h2>
<Hacktoberfest />
{/* <p className="text-l mb-8 mt-4 max-w-4xl">
<p className="text-l mb-8 mt-4 max-w-4xl">
DigitalOcean's Hacktoberfest is a month-long celebration of open-source
contributions. Everyone is welcome to participate, regardless of their
Expand All @@ -49,7 +51,8 @@ export const QuickStart = () => {
<a href="https://opensource.guide/how-to-contribute">
Learn How to Contribute?
</a>
</p>
</p> */}
// </p>

<h2 className="mt-8 text-2xl font-semibold tracking-wide md:text-3xl">
Installation Guide 📗
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import Layout from "@theme/Layout";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import {Community, KeployCloud, Resources, QuickStart} from "../components";
import {Community, KeployCloud, Resources, QuickStart,Hacktoberfest} from "../components";
import {GSoC} from "../components/GSoC";
import {Intro} from "../components";
export default function Home() {
Expand Down
Loading