Skip to content

Commit 43c6187

Browse files
committed
added contact page
1 parent 621263b commit 43c6187

File tree

4 files changed

+84
-55
lines changed

4 files changed

+84
-55
lines changed

frontend/package-lock.json

Lines changed: 48 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"axios": "^1.7.2",
2222
"eslint-config-next": "13.4.19",
2323
"framer-motion": "^11.1.2",
24-
"next": "13.4.19",
24+
"next": "13.4.12",
2525
"postcss": "8.4.29",
2626
"react": "18.2.0",
2727
"react-dom": "18.2.0",

frontend/src/pages/contact-us.tsx

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
import Footer from '@/components/Footer';
2+
import Hamburger from '@/components/Hamburger';
3+
import Navbar from '@/components/Navbar';
4+
15
export default function ContactUs() {
2-
return <div>
3-
<h1>Hello world</h1>
4-
</div>
5-
6-
}
6+
return (
7+
<section className="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden">
8+
<Navbar />
9+
<section>
10+
<p>
11+
Follow us on social media to be notified of upcoming events and opportunities' or
12+
something like that
13+
</p>
14+
</section>
15+
<Footer />
16+
</section>
17+
);
18+
}

frontend/tsconfig.json

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": ["dom", "dom.iterable", "esnext"],
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
59
"allowJs": true,
610
"skipLibCheck": true,
711
"strict": true,
@@ -14,9 +18,18 @@
1418
"jsx": "preserve",
1519
"incremental": true,
1620
"paths": {
17-
"@/*": ["./src/*"]
18-
}
21+
"@/*": [
22+
"./src/*"
23+
]
24+
},
25+
"forceConsistentCasingInFileNames": true
1926
},
20-
"include": ["./next-env.d.ts", "**/*.ts", "**/*.tsx"],
21-
"exclude": ["node_modules"]
27+
"include": [
28+
"./next-env.d.ts",
29+
"**/*.ts",
30+
"**/*.tsx"
31+
],
32+
"exclude": [
33+
"node_modules"
34+
]
2235
}

0 commit comments

Comments
 (0)