diff --git a/etc/notes/ui-design.md b/etc/notes/ui-design.md new file mode 100644 index 0000000..516413e --- /dev/null +++ b/etc/notes/ui-design.md @@ -0,0 +1,32 @@ +# UI Design Notes + +## Implementing the Design + +### Overall / Layout + +* Home & Events are separated, so we should create a separation in the solution + +### Home Page + +* Search area: + * Language selection + * Location (country / city) search / with online option + * When (date range selection) + +### Events Page + +* Search area: + * Language selection + * Location (country / city) search / with online option + * When (date range selection) + +## Features + +### Should Implement for the Design + +* ... + +### Plan for Future + +* Event & Organization Categories +* Event & Organization Tags (use the tagging system of CMS Kit) \ No newline at end of file diff --git a/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalScriptContributor.cs b/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalScriptContributor.cs index bb9d1b1..a475c95 100644 --- a/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalScriptContributor.cs +++ b/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalScriptContributor.cs @@ -6,7 +6,6 @@ namespace EventHub.Web.Theme.Bundling { public override void ConfigureBundle(BundleConfigurationContext context) { - context.Files.Add("/themes/eventhub/layout.js"); } } } \ No newline at end of file diff --git a/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalStyleContributor.cs b/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalStyleContributor.cs index 9dcbf1a..d8ce063 100644 --- a/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalStyleContributor.cs +++ b/src/EventHub.Web.Theme/Bundling/EventHubThemeGlobalStyleContributor.cs @@ -6,7 +6,9 @@ namespace EventHub.Web.Theme.Bundling { public override void ConfigureBundle(BundleConfigurationContext context) { - context.Files.Add("/themes/eventhub/layout.css"); + context.Files.Add("/themes/eventhub/style.css"); + context.Files.Add("/themes/eventhub/owl-edit.css"); + context.Files.Add("/themes/eventhub/floating-labels.css"); } } } diff --git a/src/EventHub.Web.Theme/EventHub.Web.Theme.csproj b/src/EventHub.Web.Theme/EventHub.Web.Theme.csproj index 9c7389f..ac59973 100644 --- a/src/EventHub.Web.Theme/EventHub.Web.Theme.csproj +++ b/src/EventHub.Web.Theme/EventHub.Web.Theme.csproj @@ -20,6 +20,9 @@ + + + diff --git a/src/EventHub.Web.Theme/Themes/EventHub/Components/Footer/Default.cshtml b/src/EventHub.Web.Theme/Themes/EventHub/Components/Footer/Default.cshtml new file mode 100644 index 0000000..3cb0a7d --- /dev/null +++ b/src/EventHub.Web.Theme/Themes/EventHub/Components/Footer/Default.cshtml @@ -0,0 +1,72 @@ + + \ No newline at end of file diff --git a/src/EventHub.Web.Theme/Themes/EventHub/Components/Footer/FooterViewComponent.cs b/src/EventHub.Web.Theme/Themes/EventHub/Components/Footer/FooterViewComponent.cs new file mode 100644 index 0000000..3aaf585 --- /dev/null +++ b/src/EventHub.Web.Theme/Themes/EventHub/Components/Footer/FooterViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Volo.Abp.AspNetCore.Mvc; + +namespace EventHub.Web.Theme.Themes.EventHub.Components.Footer +{ + public class FooterViewComponent : AbpViewComponent + { + public IViewComponentResult Invoke() + { + return View("~/Themes/EventHub/Components/Footer/Default.cshtml"); + } + } +} \ No newline at end of file diff --git a/src/EventHub.Web.Theme/Themes/EventHub/Components/MainNavbar/Default.cshtml b/src/EventHub.Web.Theme/Themes/EventHub/Components/MainNavbar/Default.cshtml index ac2cce1..55974b3 100644 --- a/src/EventHub.Web.Theme/Themes/EventHub/Components/MainNavbar/Default.cshtml +++ b/src/EventHub.Web.Theme/Themes/EventHub/Components/MainNavbar/Default.cshtml @@ -1,21 +1,34 @@ -@using EventHub.Web.Theme.Themes.EventHub.Components.Brand -@using EventHub.Web.Theme.Themes.EventHub.Components.Menu -@using EventHub.Web.Theme.Themes.EventHub.Components.Toolbar - \ No newline at end of file diff --git a/src/EventHub.Web.Theme/Themes/EventHub/Layouts/Application.cshtml b/src/EventHub.Web.Theme/Themes/EventHub/Layouts/Application.cshtml index 28476b9..033d088 100644 --- a/src/EventHub.Web.Theme/Themes/EventHub/Layouts/Application.cshtml +++ b/src/EventHub.Web.Theme/Themes/EventHub/Layouts/Application.cshtml @@ -6,15 +6,14 @@ @using Volo.Abp.Localization @using Volo.Abp.Ui.Branding @using EventHub.Web.Theme.Bundling +@using EventHub.Web.Theme.Themes.EventHub.Components.Footer @using EventHub.Web.Theme.Themes.EventHub.Components.MainNavbar @using EventHub.Web.Theme.Themes.EventHub.Components.PageAlerts @inject IBrandingProvider BrandingProvider @inject IPageLayout PageLayout @{ Layout = null; - var containerClass = ViewBag.FluidLayout == true ? "container-fluid" : "container"; //TODO: Better and type-safe options - - var pageTitle = ViewBag.Title == null ? BrandingProvider.AppName : ViewBag.Title; //TODO: Discard to get from Title + var pageTitle = ViewBag.Title == null ? "EventHub" : ViewBag.Title; if (PageLayout.Content.Title != null) { @@ -41,7 +40,13 @@ @pageTitle - + + + + + + + @await Component.InvokeAsync(typeof(WidgetStylesViewComponent)) @@ -49,32 +54,20 @@ @await Component.InvokeLayoutHookAsync(LayoutHooks.Head.Last, StandardLayouts.Application) - + @await Component.InvokeLayoutHookAsync(LayoutHooks.Body.First, StandardLayouts.Application) - @(await Component.InvokeAsync()) - -
- @(await Component.InvokeAsync()) -
-
- @RenderSection("content_toolbar", false) -
-
- @await Component.InvokeLayoutHookAsync(LayoutHooks.PageContent.First, StandardLayouts.Application) - @RenderBody() - @await Component.InvokeLayoutHookAsync(LayoutHooks.PageContent.Last, StandardLayouts.Application) -
- - - + @(await Component.InvokeAsync()) + @await Component.InvokeLayoutHookAsync(LayoutHooks.PageContent.First, StandardLayouts.Application) + @RenderBody() + @await Component.InvokeLayoutHookAsync(LayoutHooks.PageContent.Last, StandardLayouts.Application) + @(await Component.InvokeAsync()) + + - @await Component.InvokeAsync(typeof(WidgetScriptsViewComponent)) - @await RenderSectionAsync("scripts", false) - @await Component.InvokeLayoutHookAsync(LayoutHooks.Body.Last, StandardLayouts.Application) - + \ No newline at end of file diff --git a/src/EventHub.Web.Theme/wwwroot/themes/eventhub/floating-labels.css b/src/EventHub.Web.Theme/wwwroot/themes/eventhub/floating-labels.css new file mode 100644 index 0000000..3ab328b --- /dev/null +++ b/src/EventHub.Web.Theme/wwwroot/themes/eventhub/floating-labels.css @@ -0,0 +1,70 @@ + + +.form-label-group input::-webkit-input-placeholder { + color: transparent; + } + .form-label-group input:-moz-placeholder { + color: transparent; + } + .form-label-group input::-moz-placeholder { + color: transparent; + } + .form-label-group input:-ms-input-placeholder { + color: transparent; + } + + +.form-signin { + width: 100%; + max-width: 420px; + padding: 15px; + margin: auto; +} + +.form-label-group { + position: relative; +} + +.form-label-group > input { + padding: 14px 20px; +} +.form-label-group > label { + padding: 14px 20px; +} + +.form-label-group > label { + position: absolute; + top: 0; + left: 0; + display: block; + width: 100%; + margin-bottom: 0; /* Override default ` } + +
+
+ +
+
+ +
+
+
+
+
+ +
+
+
+ + +
+
+
+
+ + +
+
+
+ +
+
+
+
+
+ +
+
+
+

Upcoming Events

+
+
+
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Lorem Connected
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on the card title and make up the bulk of the card's content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Chainlink Connected Smart Contracts Lorem Ipsum
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on th content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Chainlink Connected Smart Contracts
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on the card title and make up the bud title and make up e card's content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Lorem Connected
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on the card title and make up the bulk of the card's content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Chainlink Connected Smart Contracts Lorem Ipsum
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on th content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Chainlink Connected Smart Contracts
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on the card title and make up the bud title and make up e card's content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Lorem Connected
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on the card title and make up the bulk of the card's content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Chainlink Connected Smart Contracts Lorem Ipsum
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on th content.

+
+ Learn More +
+
+
+
+
+
+
+
+ ... +
+
+
+
+
+ Mar + 9 +
+
+
+
+
Chainlink Connected Smart Contracts
+ 7 pm - 9 pm | Ankara , Çankaya +

Some quick example text to build on the card title and make up the bud title and make up e card's content.

+
+ Learn More +
+
+
+
+
+
+
+ +
+
+ +
+
+
+ + +
+
+
+ +

Online Events

+ +
+
+
+ +
+

How EventHub Works?

+
+
+
+

Explore groups

+

+ List who is organizing local events + with one click. +

+ Join EventHub +
+
+
+
+

Start an Event

+

Create your own Eventhub group and benefit from a community of millions.

+ Start +
+
+
+
+ + +@*

Upcoming Events

@@ -47,3 +535,4 @@ } +*@ \ No newline at end of file diff --git a/src/EventHub.Web/Pages/Index.js b/src/EventHub.Web/Pages/Index.js index 46208fb..c7ad25e 100644 --- a/src/EventHub.Web/Pages/Index.js +++ b/src/EventHub.Web/Pages/Index.js @@ -1,3 +1,28 @@ $(function () { - -}); + $('.main-slider .owl-carousel').owlCarousel({ + loop:true, + center:true, + margin:0, + padding:0, + nav:true, + items:1, + dots: false, + }); + + $('.card-slider .owl-carousel').owlCarousel({ + loop:false, + center:false, + margin:30, + padding:0, + nav:true, + responsive:{ + 0:{ + items:1, + }, + 600:{ + items:2, + }, + }, + dots: true, + }); +}); \ No newline at end of file diff --git a/src/EventHub.Web/wwwroot/assets/avatar.png b/src/EventHub.Web/wwwroot/assets/avatar.png new file mode 100644 index 0000000..3511a62 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/avatar.png differ diff --git a/src/EventHub.Web/wwwroot/assets/avatar2.png b/src/EventHub.Web/wwwroot/assets/avatar2.png new file mode 100644 index 0000000..aa6af07 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/avatar2.png differ diff --git a/src/EventHub.Web/wwwroot/assets/avatar3.png b/src/EventHub.Web/wwwroot/assets/avatar3.png new file mode 100644 index 0000000..0362268 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/avatar3.png differ diff --git a/src/EventHub.Web/wwwroot/assets/avatar4.png b/src/EventHub.Web/wwwroot/assets/avatar4.png new file mode 100644 index 0000000..b7a1ba4 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/avatar4.png differ diff --git a/src/EventHub.Web/wwwroot/assets/big-avatar.png b/src/EventHub.Web/wwwroot/assets/big-avatar.png new file mode 100644 index 0000000..4ecf715 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/big-avatar.png differ diff --git a/src/EventHub.Web/wwwroot/assets/card-img.png b/src/EventHub.Web/wwwroot/assets/card-img.png new file mode 100644 index 0000000..9d43f10 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/card-img.png differ diff --git a/src/EventHub.Web/wwwroot/assets/card-left-image.png b/src/EventHub.Web/wwwroot/assets/card-left-image.png new file mode 100644 index 0000000..d119f60 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/card-left-image.png differ diff --git a/src/EventHub.Web/wwwroot/assets/detail.png b/src/EventHub.Web/wwwroot/assets/detail.png new file mode 100644 index 0000000..a86a5d2 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/detail.png differ diff --git a/src/EventHub.Web/wwwroot/assets/dropdown-arrow.svg b/src/EventHub.Web/wwwroot/assets/dropdown-arrow.svg new file mode 100644 index 0000000..53156c3 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/dropdown-arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/facebook.svg b/src/EventHub.Web/wwwroot/assets/facebook.svg new file mode 100644 index 0000000..6bb684f --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/facebook.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/facebook2.png b/src/EventHub.Web/wwwroot/assets/facebook2.png new file mode 100644 index 0000000..35f3cec Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/facebook2.png differ diff --git a/src/EventHub.Web/wwwroot/assets/facebook2.svg b/src/EventHub.Web/wwwroot/assets/facebook2.svg new file mode 100644 index 0000000..5d2153c --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/facebook2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/EventHub.Web/wwwroot/assets/google.svg b/src/EventHub.Web/wwwroot/assets/google.svg new file mode 100644 index 0000000..444bc3a --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/google.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/grid.svg b/src/EventHub.Web/wwwroot/assets/grid.svg new file mode 100644 index 0000000..d265da9 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/grid.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/EventHub.Web/wwwroot/assets/in.svg b/src/EventHub.Web/wwwroot/assets/in.svg new file mode 100644 index 0000000..601226b --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/in.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/in2.svg b/src/EventHub.Web/wwwroot/assets/in2.svg new file mode 100644 index 0000000..9c104e1 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/in2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/EventHub.Web/wwwroot/assets/inner-banner-2.png b/src/EventHub.Web/wwwroot/assets/inner-banner-2.png new file mode 100644 index 0000000..f01b0c9 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/inner-banner-2.png differ diff --git a/src/EventHub.Web/wwwroot/assets/inner-banner.png b/src/EventHub.Web/wwwroot/assets/inner-banner.png new file mode 100644 index 0000000..17d9753 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/inner-banner.png differ diff --git a/src/EventHub.Web/wwwroot/assets/list.svg b/src/EventHub.Web/wwwroot/assets/list.svg new file mode 100644 index 0000000..be78594 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/list.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/EventHub.Web/wwwroot/assets/logout.svg b/src/EventHub.Web/wwwroot/assets/logout.svg new file mode 100644 index 0000000..41f208c --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/logout.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/EventHub.Web/wwwroot/assets/more-btn.svg b/src/EventHub.Web/wwwroot/assets/more-btn.svg new file mode 100644 index 0000000..15bb505 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/more-btn.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/nots.svg b/src/EventHub.Web/wwwroot/assets/nots.svg new file mode 100644 index 0000000..f614dbf --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/nots.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/now.svg b/src/EventHub.Web/wwwroot/assets/now.svg new file mode 100644 index 0000000..d62a7ce --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/now.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/EventHub.Web/wwwroot/assets/org-detail-top.png b/src/EventHub.Web/wwwroot/assets/org-detail-top.png new file mode 100644 index 0000000..59e71cd Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/org-detail-top.png differ diff --git a/src/EventHub.Web/wwwroot/assets/owl-2-left.svg b/src/EventHub.Web/wwwroot/assets/owl-2-left.svg new file mode 100644 index 0000000..7a8a83a --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/owl-2-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/owl-2-right.svg b/src/EventHub.Web/wwwroot/assets/owl-2-right.svg new file mode 100644 index 0000000..19e0d4e --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/owl-2-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/past.svg b/src/EventHub.Web/wwwroot/assets/past.svg new file mode 100644 index 0000000..a9334d8 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/past.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/EventHub.Web/wwwroot/assets/pin.svg b/src/EventHub.Web/wwwroot/assets/pin.svg new file mode 100644 index 0000000..223ace4 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/pin.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/EventHub.Web/wwwroot/assets/pink-arrow-right.svg b/src/EventHub.Web/wwwroot/assets/pink-arrow-right.svg new file mode 100644 index 0000000..e35076b --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/pink-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/pink-arrow.svg b/src/EventHub.Web/wwwroot/assets/pink-arrow.svg new file mode 100644 index 0000000..4d75ddb --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/pink-arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/plus.svg b/src/EventHub.Web/wwwroot/assets/plus.svg new file mode 100644 index 0000000..883d205 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/search.svg b/src/EventHub.Web/wwwroot/assets/search.svg new file mode 100644 index 0000000..36b4121 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/select-arrow.png b/src/EventHub.Web/wwwroot/assets/select-arrow.png new file mode 100644 index 0000000..5227bc1 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/select-arrow.png differ diff --git a/src/EventHub.Web/wwwroot/assets/select-arrow.svg b/src/EventHub.Web/wwwroot/assets/select-arrow.svg new file mode 100644 index 0000000..7c983ea --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/select-arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/seperator.png b/src/EventHub.Web/wwwroot/assets/seperator.png new file mode 100644 index 0000000..421b6a1 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/seperator.png differ diff --git a/src/EventHub.Web/wwwroot/assets/seperator2.svg b/src/EventHub.Web/wwwroot/assets/seperator2.svg new file mode 100644 index 0000000..94c140a --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/seperator2.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/settings.svg b/src/EventHub.Web/wwwroot/assets/settings.svg new file mode 100644 index 0000000..9c6291f --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/settings.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/EventHub.Web/wwwroot/assets/slide.jpg b/src/EventHub.Web/wwwroot/assets/slide.jpg new file mode 100644 index 0000000..226ef80 Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/slide.jpg differ diff --git a/src/EventHub.Web/wwwroot/assets/slider-left.svg b/src/EventHub.Web/wwwroot/assets/slider-left.svg new file mode 100644 index 0000000..243786c --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/slider-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/slider-right.svg b/src/EventHub.Web/wwwroot/assets/slider-right.svg new file mode 100644 index 0000000..65bcfb6 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/slider-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/success-icon.png b/src/EventHub.Web/wwwroot/assets/success-icon.png new file mode 100644 index 0000000..9dfe34c Binary files /dev/null and b/src/EventHub.Web/wwwroot/assets/success-icon.png differ diff --git a/src/EventHub.Web/wwwroot/assets/twitter.svg b/src/EventHub.Web/wwwroot/assets/twitter.svg new file mode 100644 index 0000000..c5b8c3a --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/twitter.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/twitter2.svg b/src/EventHub.Web/wwwroot/assets/twitter2.svg new file mode 100644 index 0000000..eae59c6 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/twitter2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/EventHub.Web/wwwroot/assets/underline.svg b/src/EventHub.Web/wwwroot/assets/underline.svg new file mode 100644 index 0000000..dec9fdf --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/underline.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/EventHub.Web/wwwroot/assets/you.svg b/src/EventHub.Web/wwwroot/assets/you.svg new file mode 100644 index 0000000..b182a23 --- /dev/null +++ b/src/EventHub.Web/wwwroot/assets/you.svg @@ -0,0 +1,3 @@ + + +