TakeCareApp/app/about.R

45 lines
1.2 KiB
R
Raw Normal View History

2020-12-16 20:49:40 +01:00
library(shiny)
library(magrittr)
library(ggplot2)
library(plotly)
library(DT)
2020-12-19 19:11:19 +01:00
aboutUI <- function(id){
ns <- NS(id)
fluidPage(
2020-12-16 20:49:40 +01:00
tags$head(
2020-12-19 21:57:19 +01:00
tags$link(rel = "stylesheet", type = "text/css", href = "style.css")
2020-12-16 20:49:40 +01:00
),
2021-01-03 18:41:14 +01:00
fluidPage(
h1("Kim jestesmy?", align = "center"),
br(),
h4("Jestesmy mlodym dynamicznym zespolem wdrazajacym sie w swiat tworzenia profesjonalnych aplikacji"),
h4("Nasz zespol sklada sie z:"),
br(),
fluidRow(column(4,
div(div("Jan Przybylski"),img(src="jp.png", height = 150, width = 150)))%>% tagAppendAttributes(class = 'column-tile'),
column(4,
div(div("Rafal Piskorski"),img(src="rafal.png", height = 150, width = 150)))%>% tagAppendAttributes(class = 'column-tile'),
column(4,
div(div("Robert Tarnas"),img(src="robert.png", height = 150, width = 150)))%>% tagAppendAttributes(class = 'column-tile'),
),
2020-12-19 19:11:19 +01:00
2020-12-17 01:07:12 +01:00
2020-12-16 20:49:40 +01:00
)
)
2020-12-19 19:11:19 +01:00
}
2020-12-16 20:49:40 +01:00
2020-12-19 19:11:19 +01:00
aboutServer <- function(input, output, session) {
2020-12-16 20:49:40 +01:00
}