Skip to content

Commit 9610167

Browse files
authored
Merge pull request #1 from CredibleAI/dev
News articles, privacy/terms, LinkedIn, images, object-contain, dev w…
2 parents 3abc040 + e6f0f05 commit 9610167

28 files changed

Lines changed: 697 additions & 126 deletions

.github/workflows/dev.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Dev build pipeline – run build on push to dev
2+
name: Dev build
3+
4+
on:
5+
push:
6+
branches: ["dev"]
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: "20"
20+
cache: "npm"
21+
22+
- name: Install dependencies
23+
run: npm ci
24+
25+
- name: Build Next.js
26+
run: npm run build
27+
env:
28+
NEXT_PUBLIC_BLOB_URL: ${{ secrets.NEXT_PUBLIC_BLOB_URL }}
29+
30+
- name: Lint
31+
run: npm run lint

public/images/news/iclr.jpg

66.1 KB
Loading

public/images/news/lung-1.jpeg

19.7 KB
Loading

public/images/news/lung-2.png

486 KB
Loading

public/images/news/neurips-2.jpeg

397 KB
Loading

public/images/news/neurips1.jpeg

439 KB
Loading

src/app/about/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ export default function AboutPage() {
1212
<Navbar items={navigationItems} activeItem="/about" />
1313

1414
{/* Main Content */}
15-
<div className="pt-20">
15+
<div className="pt-[64px] md:pt-[80px]">
1616
<Section className="py-20 md:py-32 lg:py-[180px]">
17-
<div className="flex flex-col gap-[90px] md:gap-32 lg:gap-[180px] items-start max-w-[1200px] mx-auto px-5 md:px-5 lg:px-0">
17+
<div className="flex flex-col gap-[90px] md:gap-32 lg:gap-[180px] items-start max-w-[1200px] mx-auto">
1818
{/* Header Section */}
1919
<div className="flex flex-col gap-0 items-start text-[#001f33] w-full">
2020
<p className="font-mono text-base md:text-lg font-normal uppercase mb-[10px] md:mb-[28px] tracking-[0.32px]">

src/app/contact/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function ContactPage() {
99
<Navbar items={navigationItems} activeItem="/contact" />
1010

1111
{/* Main Content Section */}
12-
<div className="pt-20">
12+
<div className="pt-[64px] md:pt-[80px]">
1313
<Section className="py-12 md:py-24 lg:py-[180px]">
1414
<div className="flex flex-col lg:flex-row gap-6 lg:gap-[24px] items-start max-w-[1200px] mx-auto">
1515
{/* Left Column - Contact Information */}

src/app/globals.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
/* Layout */
1111
--max-width: 1440px;
1212
--horizontal-padding: 120px;
13+
--horizontal-padding-mobile: 20px;
1314
}
1415

1516
@theme inline {

src/app/join-us/[id]/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ export default async function OpportunityPage({
3131
<div className="relative min-h-screen bg-white">
3232
<Navbar items={navigationItems} activeItem="/join-us" />
3333

34-
<div className="pt-20">
35-
<div className="px-6 md:px-[120px] py-6">
34+
<div className="pt-[64px] md:pt-[80px]">
35+
<Section className="py-6">
3636
<Link
3737
href="/join-us"
3838
className="inline-flex items-center gap-2 font-mono text-sm font-normal text-[#001f33] uppercase hover:opacity-80 transition-opacity"
@@ -54,7 +54,7 @@ export default async function OpportunityPage({
5454
</svg>
5555
Back to Positions
5656
</Link>
57-
</div>
57+
</Section>
5858

5959
<Section className="py-12 md:py-20">
6060
<div className="flex flex-col gap-8 md:gap-12 items-start max-w-[1200px] mx-auto">
@@ -191,7 +191,7 @@ export default async function OpportunityPage({
191191
</div>
192192
</Section>
193193

194-
<div className="px-6 md:px-[120px] py-6 border-t border-[#a3a3a3]">
194+
<Section className="py-6 border-t border-[#a3a3a3]">
195195
<Link
196196
href="/join-us"
197197
className="inline-flex items-center gap-2 font-mono text-sm font-normal text-[#001f33] uppercase hover:opacity-80 transition-opacity"
@@ -213,7 +213,7 @@ export default async function OpportunityPage({
213213
</svg>
214214
Back to Positions
215215
</Link>
216-
</div>
216+
</Section>
217217
</div>
218218

219219
<Footer />

0 commit comments

Comments
 (0)