Skip to content

Commit 967735c

Browse files
committed
added about-us and teams section to landing page
1 parent afaa1f7 commit 967735c

File tree

8 files changed

+985
-9
lines changed

8 files changed

+985
-9
lines changed

src/pages/about-us.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react'
2+
import About from '@/views/landing-page/About'
3+
4+
const AboutUs = () => {
5+
return (
6+
<About/>
7+
)
8+
}
9+
10+
export default AboutUs

src/pages/team.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import Team from '@/views/landing-page/Team'
2+
import React from 'react'
3+
4+
const team = () => {
5+
return (
6+
<Team/>
7+
)
8+
}
9+
10+
export default team

src/styles/main.sass

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap')
66
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap')
77
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;500;700&display=swap')
8+
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@200;300;400;600;800&display=swap')
89
*
910
@apply box-border
1011

src/views/landing-page/About.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import React from 'react'
2+
import Navbar from './Navbar';
3+
import Footer from './Footer';
4+
import TeamSection2 from './components/TeamSection2';
5+
6+
const About = () => {
7+
return (
8+
<div>
9+
<Navbar/>
10+
<div className="pt-20 bg-center bg-auto bg-no-repeat bg-origin-content " style={{ backgroundImage: "url('/')",}}>
11+
<TeamSection2/>
12+
</div>
13+
<Footer/>
14+
</div>
15+
)
16+
}
17+
18+
export default About;

src/views/landing-page/Footer.tsx

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/* eslint-disable @next/next/no-img-element */
2+
import Link from 'next/link';
23
import React, { useState } from 'react';
34
import { FaCopy } from 'react-icons/fa';
45

@@ -98,22 +99,22 @@ const Footer = () => {
9899
<h4 className="text-xl text-[#F0F0F0] font-inter font-medium mb-3">Product</h4>
99100
<ul className="text-sm transition-all duration-500 whitespace-nowrap">
100101
<li className="mb-2">
101-
<a href="javascript:;" className="text-[#9E9E9E] text-lg hover:text-white">
102+
<a href="https://jiffyscan.xyz/" className="text-[#9E9E9E] text-lg hover:text-white">
102103
Explorer as a Service
103104
</a>
104105
</li>
105106
<li className="mb-2">
106-
<a href="javascript:;" className="text-[#9E9E9E] text-lg hover:text-white">
107+
<a href="https://jiffyscan.mintlify.app/Quickstart/bundler" className="text-[#9E9E9E] text-lg hover:text-white">
107108
Bundler API
108109
</a>
109110
</li>
110111
<li className="mb-2">
111-
<a href="javascript:;" className="text-[#9E9E9E] text-lg hover:text-white">
112+
<a href="https://jiffyscan.mintlify.app/Quickstart/paymaster" className="text-[#9E9E9E] text-lg hover:text-white">
112113
Paymaster API
113114
</a>
114115
</li>
115116
<li className="mb-2">
116-
<a href="javascript:;" className="text-[#9E9E9E] text-lg hover:text-white">
117+
<a href="https://jiffyscan.mintlify.app/Quickstart/dataapis" className="text-[#9E9E9E] text-lg hover:text-white">
117118
Data API
118119
</a>
119120
</li>
@@ -129,9 +130,9 @@ const Footer = () => {
129130
<h4 className="text-xl text-[#F0F0F0] font-inter font-medium mb-3">Company</h4>
130131
<ul className="text-sm transition-all duration-500 whitespace-nowrap">
131132
<li className="mb-2">
132-
<a href="javascript:;" className="text-[#9E9E9E] text-lg hover:text-white">
133-
Our Team
134-
</a>
133+
<Link href="/about-us" className="text-[#9E9E9E] text-lg hover:text-white">
134+
About Us
135+
</Link>
135136
</li>
136137
<li className="mb-2">
137138
<a href="javascript:;" className="text-[#9E9E9E] text-lg hover:text-white">
@@ -180,9 +181,9 @@ const Footer = () => {
180181
</a>
181182
</li>
182183
<li>
183-
<a href="javascript:;" className="text-[#9E9E9E] text-lg hover:text-white">
184+
<Link href="/pricing" className="text-[#9E9E9E] text-lg hover:text-white">
184185
FAQ
185-
</a>
186+
</Link>
186187
</li>
187188
</ul>
188189
</div>

src/views/landing-page/Team.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import React from 'react'
2+
import Navbar from './Navbar'
3+
import Footer from './Footer'
4+
import TeamSection from './components/TeamSection'
5+
6+
const Team = () => {
7+
return (
8+
<div>
9+
<Navbar/>
10+
<div className="pt-20 bg-center bg-auto bg-no-repeat bg-origin-content " style={{ backgroundImage: "url('/')",}}>
11+
<TeamSection/>
12+
</div>
13+
<Footer/>
14+
</div>
15+
)
16+
}
17+
18+
export default Team

0 commit comments

Comments
 (0)