Skip to content

Commit bb3241a

Browse files
updates
1 parent 78f9dfc commit bb3241a

26 files changed

Lines changed: 1699 additions & 1 deletion

File tree

.claude/settings.local.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
"Bash(curl -s -o /dev/null -w \"%{http_code}\" http://localhost:3000/java-technologies-job-support/)",
3737
"Bash(curl -s -o /dev/null -w \"%{http_code}\" http://localhost:3000/java-job-support/)",
3838
"Bash(curl -sL -o /dev/null -w \"%{http_code}\" http://localhost:3000/java-technologies-job-support/)",
39-
"Bash(curl -sL -o /dev/null -w \"%{http_code}\" http://localhost:3000/java-job-support/)"
39+
"Bash(curl -sL -o /dev/null -w \"%{http_code}\" http://localhost:3000/java-job-support/)",
40+
"PowerShell(Get-ChildItem -Path \"D:\\\\solutions\\\\business websites\\\\proxytechsupport-next\\\\proxytechsupport-nextjs\" -Force | Select-Object Name, @{Name='Type';Expression={if\\($_.PSIsContainer\\){'Directory'}else{'File'}}})",
41+
"Bash(Select-Object Name)"
4042
]
4143
}
4244
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { aiMlJobSupportCanada } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(aiMlJobSupportCanada);
7+
8+
export default function AiMlJobSupportCanadaPage() {
9+
return <LandingPageTemplate config={aiMlJobSupportCanada} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { cloudJobSupportCanada } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(cloudJobSupportCanada);
7+
8+
export default function CloudJobSupportCanadaPage() {
9+
return <LandingPageTemplate config={cloudJobSupportCanada} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { devopsJobSupportCanada } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(devopsJobSupportCanada);
7+
8+
export default function DevOpsJobSupportCanadaPage() {
9+
return <LandingPageTemplate config={devopsJobSupportCanada} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { itJobSupportCalgary } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(itJobSupportCalgary);
7+
8+
export default function ITJobSupportCalgaryPage() {
9+
return <LandingPageTemplate config={itJobSupportCalgary} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { itJobSupportMontreal } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(itJobSupportMontreal);
7+
8+
export default function ITJobSupportMontrealPage() {
9+
return <LandingPageTemplate config={itJobSupportMontreal} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { itJobSupportToronto } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(itJobSupportToronto);
7+
8+
export default function ITJobSupportTorontoPage() {
9+
return <LandingPageTemplate config={itJobSupportToronto} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { itJobSupportVancouver } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(itJobSupportVancouver);
7+
8+
export default function ITJobSupportVancouverPage() {
9+
return <LandingPageTemplate config={itJobSupportVancouver} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { javaJobSupportCanada } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(javaJobSupportCanada);
7+
8+
export default function JavaJobSupportCanadaPage() {
9+
return <LandingPageTemplate config={javaJobSupportCanada} />;
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { Metadata } from 'next';
2+
import LandingPageTemplate from '@/components/LandingPageTemplate';
3+
import { nodejsJobSupportCanada } from '@/data/landing-pages';
4+
import { landingPageMetadata } from '@/lib/site-seo';
5+
6+
export const metadata: Metadata = landingPageMetadata(nodejsJobSupportCanada);
7+
8+
export default function NodejsJobSupportCanadaPage() {
9+
return <LandingPageTemplate config={nodejsJobSupportCanada} />;
10+
}

0 commit comments

Comments
 (0)