Skip to content

Commit c7d3afe

Browse files
committed
first push
1 parent 159c8cf commit c7d3afe

File tree

224 files changed

+15675
-13287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+15675
-13287
lines changed

README.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

app/Brands/page.tsx

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { Brand } from "@/types/brand";
2+
import Image from "next/image";
3+
import brandsData from "@/components/Brands/brandsData";
4+
5+
const Brands = () => {
6+
return (
7+
<section className="pt-16">
8+
<div className="container">
9+
<div className="-mx-4 flex flex-wrap">
10+
<div className="w-full px-4">
11+
<div
12+
className="wow fadeInUp flex flex-wrap items-center justify-center rounded-sm bg-gray-light px-8 py-8 dark:bg-gray-dark sm:px-10 md:px-[50px] md:py-[40px] xl:p-[50px] 2xl:px-[70px] 2xl:py-[60px]"
13+
data-wow-delay=".1s"
14+
>
15+
{brandsData.map((brand) => (
16+
<SingleBrand key={brand.id} brand={brand} />
17+
))}
18+
</div>
19+
</div>
20+
</div>
21+
</div>
22+
</section>
23+
);
24+
};
25+
26+
export default Brands;
27+
28+
const SingleBrand = ({ brand }: { brand: Brand }) => {
29+
const { href, image, name } = brand;
30+
31+
return (
32+
<div className="mx-3 flex w-full max-w-[160px] items-center justify-center py-[15px] sm:mx-4 lg:max-w-[130px] xl:mx-6 xl:max-w-[150px] 2xl:mx-8 2xl:max-w-[160px]">
33+
<a
34+
href={href}
35+
target="_blank"
36+
rel="nofollow noreferrer"
37+
className="relative h-10 w-full opacity-70 grayscale transition hover:opacity-100 hover:grayscale-0 dark:opacity-60 dark:hover:opacity-100"
38+
>
39+
<Image src={image} alt={name} fill />
40+
</a>
41+
</div>
42+
);
43+
};

app/about/page.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import AboutSectionOne from "@/components/About/AboutSectionOne";
2+
import AboutSectionTwo from "@/components/About/AboutSectionTwo";
3+
import Breadcrumb from "@/components/Common/Breadcrumb";
4+
5+
import { Metadata } from "next";
6+
7+
const AboutPage = () => {
8+
return (
9+
<>
10+
<Breadcrumb
11+
pageName="A little bit, about us"
12+
description=""
13+
//about shruti bhej
14+
/>
15+
<AboutSectionOne />
16+
<AboutSectionTwo />
17+
</>
18+
);
19+
};
20+
21+
export default AboutPage;

app/blog-details-TM1/page.tsx

Lines changed: 357 additions & 0 deletions
Large diffs are not rendered by default.

app/blog-details-TM2/page.tsx

Lines changed: 361 additions & 0 deletions
Large diffs are not rendered by default.

app/blog-details-ariitk/page.tsx

Lines changed: 351 additions & 0 deletions
Large diffs are not rendered by default.

app/blog-sidebar/page.tsx

Lines changed: 471 additions & 0 deletions
Large diffs are not rendered by default.

app/blog/page.tsx

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
import SingleBlog from "@/components/Blog/SingleBlog";
2+
import blogData from "@/components/Blog/blogData";
3+
import Breadcrumb from "@/components/Common/Breadcrumb";
4+
5+
import { Metadata } from "next";
6+
7+
// export const metadata: Metadata = {
8+
// title: "Anecdotes",
9+
// description: "Anecdotal records for team AR-IITK",
10+
// // other metadata
11+
// };
12+
13+
const Blog = () => {
14+
return (
15+
<>
16+
<Breadcrumb pageName="Anecdote" description="" />
17+
18+
<section className="pb-[120px] pt-[120px]">
19+
<div className="container">
20+
<div className="-mx-4 flex flex-wrap justify-center">
21+
{blogData.map((blog) => (
22+
<div
23+
key={blog.id}
24+
className="w-full px-4 md:w-2/3 lg:w-1/2 xl:w-1/3"
25+
>
26+
<SingleBlog blog={blog} />
27+
</div>
28+
))}
29+
</div>
30+
31+
<div
32+
className="wow fadeInUp -mx-4 flex flex-wrap"
33+
data-wow-delay=".15s"
34+
>
35+
<div className="w-full px-4">
36+
{/* <ul className="flex items-center justify-center pt-8">
37+
<li className="mx-1">
38+
<a
39+
href="#0"
40+
className="flex h-9 min-w-[36px] items-center justify-center rounded-md bg-body-color bg-opacity-[15%] px-4 text-sm text-body-color transition hover:bg-primary hover:bg-opacity-100 hover:text-white"
41+
>
42+
Prev
43+
</a>
44+
</li> */}
45+
{/* <li className="mx-1">
46+
<a
47+
href="#0"
48+
className="flex h-9 min-w-[36px] items-center justify-center rounded-md bg-body-color bg-opacity-[15%] px-4 text-sm text-body-color transition hover:bg-primary hover:bg-opacity-100 hover:text-white"
49+
>
50+
1
51+
</a>
52+
</li> */}
53+
{/* <li className="mx-1">
54+
<a
55+
href="#0"
56+
className="flex h-9 min-w-[36px] items-center justify-center rounded-md bg-body-color bg-opacity-[15%] px-4 text-sm text-body-color transition hover:bg-primary hover:bg-opacity-100 hover:text-white"
57+
>
58+
2
59+
</a>
60+
</li>
61+
<li className="mx-1">
62+
<a
63+
href="#0"
64+
className="flex h-9 min-w-[36px] items-center justify-center rounded-md bg-body-color bg-opacity-[15%] px-4 text-sm text-body-color transition hover:bg-primary hover:bg-opacity-100 hover:text-white"
65+
>
66+
3
67+
</a>
68+
</li>
69+
<li className="mx-1">
70+
<span className="flex h-9 min-w-[36px] cursor-not-allowed items-center justify-center rounded-md bg-body-color bg-opacity-[15%] px-4 text-sm text-body-color">
71+
...
72+
</span>
73+
</li>
74+
<li className="mx-1">
75+
<a
76+
href="#0"
77+
className="flex h-9 min-w-[36px] items-center justify-center rounded-md bg-body-color bg-opacity-[15%] px-4 text-sm text-body-color transition hover:bg-primary hover:bg-opacity-100 hover:text-white"
78+
>
79+
12
80+
</a>
81+
</li>
82+
<li className="mx-1">
83+
<a
84+
href="#0"
85+
className="flex h-9 min-w-[36px] items-center justify-center rounded-md bg-body-color bg-opacity-[15%] px-4 text-sm text-body-color transition hover:bg-primary hover:bg-opacity-100 hover:text-white"
86+
>
87+
Next
88+
</a>
89+
</li>
90+
</ul> */}
91+
</div>
92+
</div>
93+
</div>
94+
</section>
95+
</>
96+
);
97+
};
98+
99+
export default Blog;

app/contact/page.tsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import Breadcrumb from "@/components/Common/Breadcrumb";
2+
import Contact from "@/components/Contact";
3+
4+
import { Metadata } from "next";
5+
6+
export const metadata: Metadata = {
7+
title: "Contact",
8+
description: "Contact page for team AR-IITK.",
9+
// other metadata
10+
//V!g8n35h was here and if you found this, you deserve a chocolate
11+
};
12+
13+
const ContactPage = () => {
14+
return (
15+
<>
16+
<Breadcrumb
17+
pageName="Contact Us"
18+
description="Have any question or suggestions? Feel free to contact the team."
19+
/>
20+
21+
<Contact />
22+
</>
23+
);
24+
};
25+
26+
export default ContactPage;

app/contactcopy/page.tsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import Breadcrumb from "@/components/Common/Breadcrumb";
2+
import ContactCopy from "@/components/Contactcopy";
3+
4+
import { Metadata } from "next";
5+
6+
// export const metadata: Metadata = {
7+
// title: "Contact",
8+
// description: "Contact page for team AR-IITK.",
9+
// // other metadata
10+
// //V!g8n35h was here and if you found this, you deserve a chocolate
11+
// };
12+
13+
const ContactPageCopy = () => {
14+
return (
15+
<>
16+
<Breadcrumb
17+
pageName="Meet the Team"
18+
description="Get in touch with us. We are always here to help you."
19+
/>
20+
21+
<ContactCopy />
22+
</>
23+
);
24+
};
25+
26+
export default ContactPageCopy;

0 commit comments

Comments
 (0)