Skip to content

added addes per routes withot docs route #3633

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

Merged
merged 5 commits into from
Jul 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -321,4 +321,4 @@ public:
{['Ishitamukherjee2004', 'ImmidiSivani'].map(username => (
<Author key={username} username={username} />
))}
</div>
</div>
16 changes: 15 additions & 1 deletion src/pages/about/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,28 @@ import Layout from "@theme/Layout";
import AboutUsSection from "../../components/Aboutpage";
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import React from "react";
import Head from "@docusaurus/Head";

export default function About() {
const {siteConfig} = useDocusaurusContext();
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`About | ${siteConfig.title}`}
description="Learn more about Code Harbor Hub and our mission to provide accessible and comprehensive educational resources to learners of all levels."
>
<Head>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5832817025080991"
crossOrigin="anonymous"
/>
<script
async
custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js"
/>
<meta name="google-adsense-account" content="ca-pub-5832817025080991" />
</Head>
<AboutUsSection />
</Layout>
);
Expand Down
14 changes: 14 additions & 0 deletions src/pages/blogs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Layout from "@theme/Layout";
import Link from "@docusaurus/Link";
import blogs from "../../database/blogs";
import Head from "@docusaurus/Head";

interface Blog {
id: number;
Expand All @@ -21,6 +22,19 @@ export default function Blogs() {
title={`Blogs from ${siteConfig.title}`}
description="Welcome to CodeHarborHub Bloge. Learn the basics to advanced concepts of web development. html, css, javascript, react, node.js, dsa, and more."
>
<Head>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5832817025080991"
crossOrigin="anonymous"
/>
<script
async
custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js"
/>
<meta name="google-adsense-account" content="ca-pub-5832817025080991" />
</Head>
<section className="blog-page margin-top--lg margin-bottom--lg">
<div className="blog-header">
<h1 className="TitleText">Welcome to CodeHarborHub Blogs </h1>
Expand Down
14 changes: 14 additions & 0 deletions src/pages/careers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from "react";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Layout from "@theme/Layout";
import CareerPage from "../../components/CareerPage";
import Head from "@docusaurus/Head";

export default function Careers() {
const { siteConfig } = useDocusaurusContext();
Expand All @@ -11,6 +12,19 @@ export default function Careers() {
title={`Careers from ${siteConfig.title}`}
description="Welcome to CodeHarborHub. Build your career in tech. Find the best opportunities in software engineering, data science, web development, and more."
>
<Head>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5832817025080991"
crossOrigin="anonymous"
/>
<script
async
custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js"
/>
<meta name="google-adsense-account" content="ca-pub-5832817025080991" />
</Head>
<CareerPage />
</Layout>
);
Expand Down
14 changes: 14 additions & 0 deletions src/pages/me.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ description: In this page, I will introduce myself.
hide_table_of_contents: true
---

<Head>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5832817025080991"
crossOrigin="anonymous"
/>
<script
async
custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js"
/>
<meta name="google-adsense-account" content="ca-pub-5832817025080991" />
</Head>

# Introduction (परिचयः) 🙏

[![An image of @ajaydhangar's Holopin badges, which is a link to view their full Holopin profile](https://holopin.me/ajaydhangar)](https://holopin.io/@ajaydhangar)
Expand Down
14 changes: 14 additions & 0 deletions src/pages/our-sponsors/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import "./Sponsors.css";
import Layout from "@theme/Layout";
import sponsors from "../../database/sponsors";
import { FaPlusCircle } from 'react-icons/fa';
import Head from "@docusaurus/Head";

const OurSponsors: React.FC = () => {
const [showScanner, setShowScanner] = useState(false);
Expand All @@ -20,6 +21,19 @@ const OurSponsors: React.FC = () => {

return (
<Layout>
<Head>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5832817025080991"
crossOrigin="anonymous"
/>
<script
async
custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js"
/>
<meta name="google-adsense-account" content="ca-pub-5832817025080991" />
</Head>
<div className="sponsor-page">
<div className="sponsor-header">
<h1 className="TitleText">Our Sponsors</h1>
Expand Down
Loading
Loading