-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
110 additions
and
32 deletions.
There are no files selected for viewing
Binary file added
BIN
+13.1 KB
.vs/kuem-si.github.io/FileContentIndex/19659a0a-fc8b-4f5a-a1af-466067e20a90.vsidx
Binary file not shown.
Binary file renamed
BIN
+2.44 MB
...45065c4-f6de-4664-a83a-48473f091c7e.vsidx → ...27c1802-bf6b-43c6-b9e3-c30018407334.vsidx
Binary file not shown.
Binary file removed
BIN
-10.3 KB
.vs/kuem-si.github.io/FileContentIndex/9fbfbd9c-dbfa-48be-87dc-36b0f4db42b5.vsidx
Binary file not shown.
Binary file added
BIN
+12.2 KB
.vs/kuem-si.github.io/FileContentIndex/d78d22ac-3655-40ca-9800-4cd61bbf7dc2.vsidx
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
.../src/components_webpage/_servicespage/_softwaredevelopment/SoftwareDevelopmentSteps.astro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
import Verticalgrid from "../../assets/Verticalgrid.astro"; | ||
import { getLangFromUrl, useTranslations, useTranslatedPath, getRouteFromUrl } from '../../../i18n/utils'; | ||
const lang = getLangFromUrl(Astro.url); | ||
const t = useTranslations(lang); | ||
const features = [ | ||
{ | ||
number: t('global:step1'), | ||
title: t('softwaredevelopmentstepspage:step1'), | ||
description: t('softwaredevelopmentstepspage:step1description'), | ||
}, | ||
{ | ||
number: t('global:step2'), | ||
title: t('softwaredevelopmentstepspage:step2'), | ||
description: t('softwaredevelopmentstepspage:step2description'), | ||
}, | ||
{ | ||
number: t('global:step3'), | ||
title: t('softwaredevelopmentstepspage:step3'), | ||
description: t('softwaredevelopmentstepspage:step3description'), | ||
}, | ||
{ | ||
number: t('global:step4'), | ||
title: t('softwaredevelopmentstepspage:step4'), | ||
description: t('softwaredevelopmentstepspage:step4description'), | ||
}, | ||
]; | ||
--- | ||
|
||
<section class="relative"> | ||
<Verticalgrid /> | ||
<div class="relative px-8 py-12 mx-auto max-w-7xl md:px-12 lg:px-32 lg:py-24"> | ||
<div class="max-w-xl mx-auto text-center"> | ||
<p class="text-sm text-transparent uppercase bg-gradient-to-r from-indigo-300 to-indigo-400 bg-clip-text"> | ||
{t('softwaredevelopmentstepspage:cliptext')} | ||
</p> | ||
<p class="mt-8 text-3xl font-normal tracking-tight text-white"> | ||
{t('softwaredevelopmentstepspage:title')} | ||
</p> | ||
</div> | ||
<div class="relative items-center w-full mx-auto mt-12 lg:p-10 lg:rounded-5xl lg:border bg-vulcan-900 border-vulcan-800"> | ||
<img | ||
class="object-top w-full border shadow-2xl lg:object-cover border-white/5 rounded-3xl h-96 shadow-vulcan-950" | ||
src="/assets/dashboard1.png" | ||
alt="" /> | ||
</div> | ||
<ul class="grid grid-cols-1 gap-12 mt-12 list-none md:grid-cols-2" role="list"> | ||
{ | ||
features.map((features) => ( | ||
<li> | ||
<div class="text-base text-vulcan-300"> | ||
<strong class="text-white">{features.number}: {features.title}</strong> | ||
― {features.description} | ||
</div> | ||
</li> | ||
)) | ||
} | ||
</ul> | ||
</div> | ||
</section> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
--- | ||
import BaseLayout from "@/layouts/BaseLayout.astro"; | ||
import Content from "@/components_webpage/_servicespage/_softwaredevelopment/Content.astro"; | ||
import SoftwareDevelopmentSteps from "@/components_webpage/_servicespage/_softwaredevelopment/SoftwareDevelopmentSteps.astro"; | ||
--- | ||
|
||
<BaseLayout> | ||
<Content /> | ||
<SoftwareDevelopmentSteps /> | ||
</BaseLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
--- | ||
import BaseLayout from "@/layouts/BaseLayout.astro"; | ||
import Content from "@/components_webpage/_servicespage/_softwaredevelopment/Content.astro"; | ||
import SoftwareDevelopmentSteps from "@/components_webpage/_servicespage/_softwaredevelopment/SoftwareDevelopmentSteps.astro"; | ||
--- | ||
|
||
<BaseLayout> | ||
<Content /> | ||
<SoftwareDevelopmentSteps /> | ||
</BaseLayout> |