+ The legal setup is the framework that allows the company to be created. An
+ entrepreneur can choose between two major legal options:
+
+
+
Sole proprietorship:
+ This is an economic activity conducted by a single natural person, in his
+ own name. It's less paperwork, but bigger trouble in case of bankeroute.
+
+
+ Limited liability:
+ A limited liability company is a corporate structure whereby the company members cannot be held personally liable for the company's debts or liabilities.
+
+
+
+
+
+
+
+ {/* this is an economic activity conducted by a single natural person, in his own name ; */}
+ {/* Company : This is an economic activity conducted by a single partner - single member company with limited liability (EURL) - or several partners (limited liability company (SARL), public limited company (SA), simplified joint-stock company (SAS)...). */}
+
+)
+
+export default Create
diff --git a/source/components/inFranceApp/animate.js b/source/components/inFranceApp/animate.js
new file mode 100644
index 000000000..035a8eee0
--- /dev/null
+++ b/source/components/inFranceApp/animate.js
@@ -0,0 +1,35 @@
+/* @flow */
+import React from 'react'
+import { animated, config as configPresets, Trail } from 'react-spring'
+import type { SpringConfig } from 'react-spring'
+
+type Props = {
+ children: Array,
+ config?: SpringConfig,
+ delay?: number
+}
+export const fromBottom = ({
+ children,
+ config = configPresets.default,
+ delay = 0
+}: Props) => (
+ i)}
+ native={true}
+ delay={delay}
+ config={config}
+ from={{ opacity: 0, y: 100 }}
+ to={{ opacity: 1, y: 0 }}>
+ {/* eslint-disable-next-line react/display-name */}
+ {children.map((item, i) => ({ y, ...style }) => (
+ `translate3d(0, ${y}px,0)`),
+ ...style
+ }}>
+ {item}
+
+ ))}
+
+)
diff --git a/source/components/inFranceApp/index.js b/source/components/inFranceApp/index.js
new file mode 100644
index 000000000..39848bb2c
--- /dev/null
+++ b/source/components/inFranceApp/index.js
@@ -0,0 +1,34 @@
+import React, { Component } from 'react'
+import Helmet from 'react-helmet'
+import { Route, Switch } from 'react-router-dom'
+import '../../containers/reset.css'
+import withTracker from '../withTracker'
+import Landing from './Landing'
+import Create from './Steps/Create'
+import './ui/index.css'
+class Layout extends Component {
+ componentDidMount() {
+ this.props.tracker.push(['trackPageView'])
+ }
+ render() {
+ return (
+ <>
+
+
+
+
+
+