Index: back_end/src/main/resources/application-h2.properties
===================================================================
--- back_end/src/main/resources/application-h2.properties	(revision bf9486e09a84a28a0a93da576677eb31d10c48c7)
+++ back_end/src/main/resources/application-h2.properties	(revision e85753073d32b7633d8079c576f63247b11687b3)
@@ -8,3 +8,4 @@
 
 spring.h2.console.enabled=true
+spring.jpa.hibernate.ddl-auto=update
 spring.h2.console.path=/h2
Index: client_app/src/components/profiles/company_profile.js
===================================================================
--- client_app/src/components/profiles/company_profile.js	(revision bf9486e09a84a28a0a93da576677eb31d10c48c7)
+++ client_app/src/components/profiles/company_profile.js	(revision e85753073d32b7633d8079c576f63247b11687b3)
@@ -1,4 +1,4 @@
 import React from 'react';
-import {Container, Header, Table, Item, Button} from 'semantic-ui-react'
+import {Container, Header, Table, Item, Button, Segment} from 'semantic-ui-react'
 import {Link} from "react-router-dom";
 
@@ -6,9 +6,20 @@
     return(
         <Container textAlign="left">
-            <Header>Company:</Header>
-            <h3>{props.data.name}</h3>
-            <h2>E-mail: {props.data.email}</h2>
-            <h3>Address: {props.data.address.country} {props.data.address.city} {props.data.address.street}</h3>
-            <Button primary as={Link} to={"/company/edit"}>Edit</Button>
+            <Header as="h1">Welcome!</Header>
+            <Segment.Group>
+                <Segment>
+                    <Header>Company</Header>
+                </Segment>
+                <Segment>
+                    <Header as="h3">Company Name:</Header>
+                    {props.data.name}
+                </Segment>
+                <Segment>
+                    <Header as="h3">Company e-mail:</Header>
+                    {props.data.email}
+                </Segment>
+                <Segment><b>Address: </b> {props.data.address.country}-{props.data.address.city}-{props.data.address.street}</Segment>
+            </Segment.Group>
+            <Button primary as={Link} to={"/team/edit"}>Edit</Button>
         </Container>
     );
Index: client_app/src/components/profiles/team_profile.js
===================================================================
--- client_app/src/components/profiles/team_profile.js	(revision bf9486e09a84a28a0a93da576677eb31d10c48c7)
+++ client_app/src/components/profiles/team_profile.js	(revision e85753073d32b7633d8079c576f63247b11687b3)
@@ -1,4 +1,4 @@
 import React from 'react';
-import {Container, Header, Table, Item, Button} from 'semantic-ui-react'
+import {Container, Header, Table, Item, Button, Segment} from 'semantic-ui-react'
 import {Link} from "react-router-dom";
 
@@ -6,8 +6,19 @@
     return(
         <Container textAlign="left">
-            <Header>Team:</Header>
-            <h3>{props.data.name}</h3>
-            <h2>E-mail: {props.data.email}</h2>
-            <h3>Members: {props.data.members}</h3>
+            <Header as="h1">Welcome!</Header>
+            <Segment.Group>
+                <Segment>
+                    <Header>Team</Header>
+                </Segment>
+                <Segment>
+                    <Header as="h3">Team Name:</Header>
+                    {props.data.name}
+                </Segment>
+                <Segment>
+                    <Header as="h3">Team e-mail:</Header>
+                    {props.data.email}
+                </Segment>
+                <Segment><b>Number of members:</b> {props.data.members}</Segment>
+            </Segment.Group>
             <Button primary as={Link} to={"/team/edit"}>Edit</Button>
         </Container>
