Skip to content

Commit

Permalink
Design and FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
hejny committed Apr 10, 2024
1 parent 70ebdad commit 23dc7be
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
6 changes: 5 additions & 1 deletion locales/cs/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ AiTraining:
Školení mohou být zaměřena na konkrétní technologie, jako je GPT-3, DALL-E-3, nebo na obecné principy AI a ML.
V rámci školení jsou výrazně úročeny mé dlouholeté zkušenosti s vývojem a také dlouhodobý vhled do vývoje rozsáhlých aplikací, založených na AI jazykových modelech.
V rámci školení jsou výrazně úročeny mé dlouholeté zkušenosti s vývojem a také dlouhodobý vhled do vývoje rozsáhlých aplikací, založených na AI jazykových modelech.
variant1:
title: >
Expand Down Expand Up @@ -161,3 +161,7 @@ AiTraining:
Nejlépe rozumím webovým a případně mobilním aplikacím psaným v TypeScriptu nebo JavaScriptu.
Pokud ale programujete v jiném jazyku, nevadí to, mám zkušenosti s dalšími programovacími jazyky a dokážu konzultovat i tak,
ačkoliv nemusím být schopen pomoci s velmi specifickými dotazy a detaily.
faq: |
## FAQ
### Jak probíhá školení?
7 changes: 6 additions & 1 deletion src/pages/ai-skoleni.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Caveat, Oswald } from '@next/font/google';
import { Oswald } from '@next/font/google';
import { useTranslation } from 'next-i18next';
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
import Link from 'next/link';
import { Vector } from 'xyzt';
import { Article } from '../components/Article/Article';
import { DebugGrid } from '../components/DebugGrid/DebugGrid';
import { Section } from '../components/Section/Section';
import { TiledBackground } from '../components/TiledBackground/TiledBackground';
import { AppHead } from '../sections/00-AppHead/AppHead';
import { CaveSection } from '../sections/01-Cave/Cave';
Expand Down Expand Up @@ -39,6 +41,9 @@ export default function AiTrainingPage({ lang }: any) {
<main>
<WelcomeSection variant="HOMEPAGE" />
<AiTrainingSection />
<Section id="AiTrainingFaq">
<Article content={t('AiTraining.faq')} isEnhanced />
</Section>
<PavolHejnySection>
<Link className="button" href="/">
{t('AiTraining.more-about-pavol')}
Expand Down
2 changes: 1 addition & 1 deletion src/sections/100-AiTraining/AiTraining.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

.variants > div > div {
/* Note: [✌] Two nested divs to use <Items/> together with nice outline */
outline: 1px solid rgb(245, 224, 185);
outline: 1px solid rgba(245, 224, 185, 0.5); /* <- [🎨] */
border-radius: 30px;
margin: 10px;
padding: 10px;
Expand Down
7 changes: 7 additions & 0 deletions src/styles/common.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,13 @@
}
}

.page blockquote {
border: 1px solid rgba(245, 224, 185, 0.5); /* <- [🎨] */
padding: 15px;
border-radius: 10px;
font-size: 1.3em;
}

.page footer {
/*/
outline: 1px dotted green;
Expand Down

0 comments on commit 23dc7be

Please sign in to comment.