Skip to content

Commit

Permalink
Add example jumbotron and carousel
Browse files Browse the repository at this point in the history
  • Loading branch information
dkapitan committed Aug 7, 2023
1 parent 576329f commit e37a06f
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 23 deletions.
Binary file added images/hero.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 20 additions & 22 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,34 @@ sidebar:
---

::: {.container-fluid}
![](images/banner.png)
```{=html}
<div class="p-5 mb-4 bg-light rounded-3 bgimg">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">Custom jumbotron</h1>
<p class="col-md-8 fs-4 hero-quote">Using a series of utilities, you can create this jumbotron, just like the one in previous versions of Bootstrap. Check out the examples below for how you can remix and restyle it to your liking.</p>
<button class="btn btn-primary btn-lg" type="button">Example button</button>
</div>
</div>
<style type="text/css">
.bgimg {
background-image: url('images/hero.jpg');
}
.hero-quote {
font-family: "Zilla Slab Highlight";
}
</style>
```
:::


::: {.container}
:::: {.container}
::: {.grid}

::: {.g-col-4}
# Hello, I am Daniel Kapitan.

:::

::: {.g-col-8}

#
I am a data architect and AI advisor who helps organizations create sustainable change by systematically engineering data that is required for new AI applications. As a consultant, my approach is centered on delivering measurable results by developing customized solutions that meet the specific needs and goals of your organization. With my expertise in machine learning, I can help you extract valuable insights from your data that can inform strategic decisions, optimize operations, and identify new opportunities for growth.

Expand All @@ -44,22 +58,6 @@ I am a data architect and AI advisor who helps organizations create sustainable
</script>
<!-- end Google Calendar Appointment Scheduling -->
```



<!-- I am a data architect and AI advisor who helps organizations create sustainable change by [:systematically engineering data](#x-data-centric-ai) that is required for new AI applications.As a consultant, my approach is centered on delivering measurable results by developing customized solutions that meet the specific needs and goals of your organization. With my expertise in machine learning, I can help you extract valuable insights from your data that can inform strategic decisions, optimize operations, and identify new opportunities for growth.
I work with organizations of all sizes and across a variety of industries, and I pride myself on my collaborative and client-focused approach. I believe that success is achieved through close collaboration, and I work closely with my clients to ensure that we achieve the best possible results together.
Whether you are looking to implement machine learning for the first time or seeking to take your data analytics to the next level, I am here to help. Contact me today to learn more about how I can help your organization harness the power of machine learning and AI to achieve your strategic objectives.
## :x data centric ai
This approach is known as data-centric AI. Read more on [https://datacentricai.org/](https://datacentricai.org/) -->

:::

:::
:::


::::
23 changes: 22 additions & 1 deletion src/projects/project-1.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,25 @@
title: MyTomorrows
---

Story about MyTomorrows ...
Story about MyTomorrows ...

```{=html}
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/images/profile-photo-34A7526.jpg" class="d-block w-100" alt="profile photo 1">
</div>
<div class="carousel-item">
<img src="/images/voorkeur_34A7355-lowres.jpg" class="d-block w-100" alt="profie photo 2">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
```

0 comments on commit e37a06f

Please sign in to comment.