-
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.
* feat: set updates * refactor: translate team, update photo * refactor: update seo, change titles
- Loading branch information
Showing
25 changed files
with
762 additions
and
164 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
import { getLangFromUrl, useTranslations } from '../../i18n/utils'; | ||
const lang = getLangFromUrl(Astro.url); | ||
const t = useTranslations(lang); | ||
--- | ||
|
||
<div | ||
id="services" | ||
class="container-fluid" | ||
style={{ backgroundColor: '#82bee5', opacity: '0.7', color: 'white' }} | ||
> | ||
<div class="container"> | ||
<div class="flexbox" style={{ display: 'flex', alignItems: 'center' }}> | ||
<h2 class="text-center my-5">{t('CHEMISTRY_SIMULATIONS_TITLE')}</h2> | ||
<div | ||
class="row" | ||
style={{ | ||
display: 'flex', | ||
justifyContent: 'space-between', | ||
width: '105%', | ||
}} | ||
> | ||
Coming soon... | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<style> | ||
.text-wrapper { | ||
margin: 20px 0; | ||
} | ||
</style> | ||
</div> |
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 |
---|---|---|
|
@@ -7,26 +7,19 @@ const t = useTranslations(lang); | |
|
||
<div | ||
class="container-fluid" | ||
style={{ backgroundColor: '#cbe6ef', color: 'white', paddingBottom: 30 }} | ||
style={{ backgroundColor: '#cbe6ef', paddingBottom: 30 }} | ||
> | ||
<div class="container"> | ||
<div class="flexbox"> | ||
<h1 class="text-center my-5" style={{ color: 'black' }}> | ||
{t('Contact us')} | ||
</h1> | ||
<div class="row my-4"> | ||
<div class="col-lg-6 mb-4"> | ||
<input type="text" class="inputBox" placeholder={t('Your Name')} /> | ||
</div> | ||
<div class="col-lg-6 mb-4"> | ||
<input type="email" class="inputBox" placeholder={t('Your Email')} /> | ||
</div> | ||
</div> | ||
<textarea rows="2" class="inputBox mb-4" placeholder={t('Your Message')} | ||
></textarea> | ||
<button class="btn btn-light mb-4 py-3" type="submit"> | ||
{t('Submit')} | ||
</button> | ||
{t('CONTACT_FORM_TEXT')} | ||
<a class="text-center mt-3" href="mailto:[email protected]"> | ||
<button class="btn btn-light mb-4 py-3" type="submit"> | ||
{t('SEND_EMAIL_BUTTON')} | ||
</button></a | ||
> | ||
</div> | ||
</div> | ||
</div> |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.