nemoImmo allpages

This commit is contained in:
Ruidy Nemausat 2019-11-02 21:10:45 +01:00
parent 100ffd10f0
commit 9f6ba1863e
5 changed files with 17 additions and 17 deletions

View file

@ -46,7 +46,7 @@ function ContactForm(props) {
if (props.showNameField) { if (props.showNameField) {
if (isEmpty(name)) { if (isEmpty(name)) {
errors.push({ errors.push({
field: "name", field: "nom",
message: "Please enter your name" message: "Please enter your name"
}); });
} }
@ -87,7 +87,7 @@ function ContactForm(props) {
<FormField <FormField
value={name} value={name}
type="text" type="text"
placeholder="Name" placeholder="Nom"
error={showErrors && getError("name")} error={showErrors && getError("name")}
onChange={value => setName(value)} onChange={value => setName(value)}
/> />

View file

@ -73,12 +73,12 @@ function DashboardSection(props) {
menuAlignment="right" menuAlignment="right"
icon={<FontAwesomeIcon icon={faAngleDown} />} icon={<FontAwesomeIcon icon={faAngleDown} />}
> >
<MenuItem label="Options" variant="header" /> <MenuItem label="Actions" variant="header" />
<MenuItem label="Menu Item" /> <MenuItem label="Terminer" />
<MenuItem label="Menu Item" /> <MenuItem label="Modifier" />
<MenuDivider variant="space" /> <MenuDivider variant="space" />
<MenuItem <MenuItem
label="Right Icon" label="Supprimer"
icon={<FontAwesomeIcon icon={faTasks} />} icon={<FontAwesomeIcon icon={faTasks} />}
iconPosition="right" iconPosition="right"
/> />
@ -94,7 +94,7 @@ function DashboardSection(props) {
</header> </header>
<section className="rainbow-m-horizontal_large rainbow-m-top_large rainbow-m-bottom_xx-large"> <section className="rainbow-m-horizontal_large rainbow-m-top_large rainbow-m-bottom_xx-large">
<Card <Card
title="Tasks" title="Tâches"
icon={ icon={
<span <span
className="rainbow-background-color_brand rainbow-border-radius_circle rainbow-align-content_center" className="rainbow-background-color_brand rainbow-border-radius_circle rainbow-align-content_center"
@ -115,13 +115,13 @@ function DashboardSection(props) {
<ButtonIcon icon={<FontAwesomeIcon icon={faAngleDown} />} /> <ButtonIcon icon={<FontAwesomeIcon icon={faAngleDown} />} />
</div> </div>
} }
actions={<Button variant="neutral" label="New" />} actions={<Button variant="neutral" label="Nouvelle tâche" />}
> >
<div className="rainbow-p-bottom_large"> <div className="rainbow-p-bottom_large">
<Input <Input
label="aplication component search" label="aplication component search"
hideLabel hideLabel
placeholder="Search" placeholder="Rechercher"
icon={<FontAwesomeIcon icon={faSearch} className="rainbow-color_gray-3" />} icon={<FontAwesomeIcon icon={faSearch} className="rainbow-color_gray-3" />}
type="search" type="search"
className="rainbow-p-around_small" className="rainbow-p-around_small"
@ -134,7 +134,7 @@ function DashboardSection(props) {
alt="the rainbow" alt="the rainbow"
/> />
<p className="rainbow-p-top_medium rainbow-font-size-heading_small rainbow-color_gray-4"> <p className="rainbow-p-top_medium rainbow-font-size-heading_small rainbow-color_gray-4">
No new tasks Pas de nouvelles tâches
</p> </p>
</div> </div>
</div> </div>

View file

@ -8,13 +8,13 @@ function AboutPage(props) {
<ContentSection <ContentSection
color="primary" color="primary"
size="large" size="large"
title="We help you make money" title="Nous vous faisons gagner du temps"
subtitle="Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolorum consequatur numquam aliquam tenetur ad amet inventore hic beatae, quas accusantium perferendis sapiente explicabo, corporis totam!" subtitle="Plus de soucis grâce à Ruidy & TiNyny"
/> />
<TeamBiosSection <TeamBiosSection
color="white" color="white"
size="medium" size="medium"
title="Meet the Team" title="L'équipe à votre service"
subtitle="" subtitle=""
/> />
</> </>

View file

@ -6,10 +6,10 @@ function ContactPage(props) {
<ContactSection <ContactSection
color="white" color="white"
size="medium" size="medium"
title="Contact Us" title="Contactez-nous"
subtitle="" subtitle="C'est un jeu d'enfant"
showNameField={true} showNameField={true}
buttonText="Send message" buttonText="Envoyer"
/> />
); );
} }

View file

@ -6,7 +6,7 @@ function FaqPage(props) {
<FaqSection <FaqSection
color="white" color="white"
size="medium" size="medium"
title="Frequently Asked Questions" title="Foire Aux Questions"
subtitle="" subtitle=""
/> />
); );