Skip to content

Commit

Permalink
Add copyright comment to all code
Browse files Browse the repository at this point in the history
  • Loading branch information
monambike committed Mar 23, 2024
1 parent 679e53c commit 11c4b7a
Show file tree
Hide file tree
Showing 42 changed files with 418 additions and 542 deletions.
7 changes: 6 additions & 1 deletion src/Monambike.Web/App.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<Router AppAssembly="@typeof(App).Assembly">
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/AboutMe.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
@using Microsoft.JSInterop
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

@using Microsoft.JSInterop
@using Monambike.Core.Data;

@inject IJSRuntime JSRuntime
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/Contact.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
@using Monambike.Core.Data;
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

@using Monambike.Core.Data;

<section class="site-section site-section--contact">
<h2 class="site-section--title">CONTATO</h2>
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/Instagram.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<h3>Instagram</h3>
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

<h3>Instagram</h3>
<blockquote class="instagram-media" data-instgrm-permalink="https://www.instagram.com/reel/CuKYpIPubaw/?utm_source=ig_embed&amp;utm_campaign=loading" data-instgrm-version="14" style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);">
<div style="padding:16px;">
<a href="https://www.instagram.com/reel/CuKYpIPubaw/?utm_source=ig_embed&amp;utm_campaign=loading" style=" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;" target="_blank">
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/MyProjects.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
@* @using Monambike.Web.Models
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

@* @using Monambike.Web.Models
@using Monambike.Web.Models.Links
<!-- MY PROJECTS -->
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/Presentation.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
@* @inject IStringLocalizer<en.1> localizer *@
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

@* @inject IStringLocalizer<en.1> localizer *@

<!-- PRESENTATION - MY NAME AND PROFESSION -->
<section class="site-section site-section--presentation">
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/SocialMedia.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<section class="site-section site-section--social-media">
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

<section class="site-section site-section--social-media">
<h2 class="site-section--title">REDES SOCIAIS</h2>
<div class="site-section--body">
<div class="site-section--social-media--containers">
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/Tour.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
@using Monambike.Core.Data;
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

@using Monambike.Core.Data;

<section class="site-section site-section--tour">
<h2 class="site-section--title">POR ONDE COMEÇAR?</h2>
Expand Down
8 changes: 7 additions & 1 deletion src/Monambike.Web/Components/Home/Warning.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<h3 class="warning">O site permanece em fase de desenvolvimento, peço sua compreensão.</h3>
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@

<h3 class="warning">O site permanece em fase de desenvolvimento, peço sua compreensão.</h3>

@*@using System.Net.Http
@using System.Threading.Tasks
Expand Down
5 changes: 4 additions & 1 deletion src/Monambike.Web/Models/RandomPhrase.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Monambike.Web.Models
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: contact@monambike.com for more information.
// For license information, please see the LICENSE file in the root directory.
namespace Monambike.Web.Models
{
public class RandomPhrase
{
Expand Down
3 changes: 3 additions & 0 deletions src/Monambike.Web/Program.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
// Contact: contact @monambike.com for more information.
// For license information, please see the LICENSE file in the root directory.
using Monambike.Web;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
Expand Down
7 changes: 6 additions & 1 deletion src/Monambike.Web/Shared/Footer.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
@inherits LayoutComponentBase
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
@inherits LayoutComponentBase
@using Monambike.Core.Data;

<footer class="footer">
Expand Down
7 changes: 6 additions & 1 deletion src/Monambike.Web/Shared/Header.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
@inherits LayoutComponentBase
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
@inherits LayoutComponentBase

<header class="header">
<div class="header-presentation">
Expand Down
7 changes: 6 additions & 1 deletion src/Monambike.Web/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
@inherits LayoutComponentBase
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
@inherits LayoutComponentBase

<Monambike.Web.Shared.Header />
<div class="main">
Expand Down
7 changes: 6 additions & 1 deletion src/Monambike.Web/Shared/NoMenuLayout.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
@inherits LayoutComponentBase
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
@inherits LayoutComponentBase

<div class="main">
<div>
Expand Down
7 changes: 6 additions & 1 deletion src/Monambike.Web/Shared/NoScript.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<noscript>
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
<noscript>
<section>
<h1>ATIVE&nbsp;O&nbsp;JAVASCRIPT!</h1>
<div>
Expand Down
7 changes: 6 additions & 1 deletion src/Monambike.Web/Shared/TranslationButton.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<select>
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
<select>
<option>Português&nbsp;(Brasil)</option>
<option>English</option>
<option>Español&nbsp;(España)</option>
Expand Down
7 changes: 6 additions & 1 deletion src/Monambike.Web/_Imports.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
@using System.Net.Http
@**************************************************************************
Copyright(c) 2024 Vinicius Gabriel Marques de Melo. All rights reserved.
Contact: contact@monambike.com for more information.
For license information, please see the LICENSE file in the root directory.
**************************************************************************@
@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
Expand Down
Loading

0 comments on commit 11c4b7a

Please sign in to comment.