You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/about-us/about-us.tsx
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,20 @@ export class AboutUs {
47
47
<p>GitHub Pages will look for an index.html , index.md , or README.md file as the entry file for your site. </p>
48
48
<p>For this convert an existing repo into Github Pages (or) create a new public repository named <b>username.github.io</b>, where username is your username (or organization name) on GitHub.</p>
<p>GitHub Pages is a free hosting service provided by GitHub, since 2008 and it allows you to publish static websites directly from a GitHub repository. It is particularly popular for personal portfolios, documentation sites, blogs, and small web projects. Here's an overview:</p><br></br>
52
+
<p>GitHub Pages is widely used for projects like documentation, small apps, or even full-fledged personal portfolios due to its simplicity and seamless integration with GitHub.</p>
53
+
<strong>Key Features:
54
+
</strong>
55
+
<p><strong>Free Hosting: </strong><br></br> GitHub Pages offers free hosting for static websites, with support for custom domains.<br></br>
56
+
<strong>Version Control: </strong> Websites hosted on GitHub Pages are tied to Git repositories, so every change to your site is versioned.<br></br>
57
+
<strong>Easy Deployment: </strong> By pushing code to specific branches (e.g., main, gh-pages) of your GitHub repository, GitHub Pages automatically builds and deploys the website.<br></br>
58
+
<strong>Jekyll Support: </strong> GitHub Pages has built-in support for Jekyll, a static site generator, making it easy to create blogs or documentation sites.<br></br>
59
+
<strong>HTTPS Support: </strong>GitHub Pages automatically provides HTTPS for your site, ensuring secure connections.<br></br></p>
60
+
<p><strong>Limitations:</strong><br></br>
61
+
<strong>Static Content:</strong> GitHub Pages is for static websites only; it doesn't support server-side code like PHP or databases.<br></br>
62
+
<strong>Traffic Limits:</strong> There's a soft limit on bandwidth and size, but it is sufficient for most small to medium-sized sites.<br></br>
63
+
<strong>Customization:</strong> Advanced customization may require integrating build tools or manually configuring settings.<br></br></p>
50
64
<h1>Multiple Github pages for multiple repositories</h1>
51
65
<p>In addition to the user/organization site, you can also have project sites for any other repository. The URL for each of these will be in the format https://<b>username</b>.github.io/repository-name.</p><p>
52
66
<ul><li> You can create as many project repositories as you like and enable GitHub Pages on them individually.</li><li>
Copy file name to clipboardExpand all lines: src/components/app-home-page/app-home-page.tsx
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,11 @@ export class AppHome {
11
11
return(
12
12
<divclass="app-home-page">
13
13
<p>
14
-
Welcome to Sanjeet Kumar's Home Page. You can use this Stencil App Starter to build entire apps all with web components using Stencil! Check out our docs on{' '}
14
+
Welcome to Sanjeet Kumar's Home Page.<p>
15
+
</p> This website is created using Stencil App Starter and hosted on <ahref="https://pages.github.com/">GitHub Pages.</a> You can use Stencil App Starter to build entire apps all with web components using Stencil! Check out docs on{' '}
15
16
<ahref="https://stenciljs.com">stenciljs.com</a> to get started.
16
17
</p>
18
+
<p><strong>Please Note:</strong> Currently, The routing to different pages is not working perfectly and you can navigate to each page, after clicking it from main Home page only. Direct URLs to each individual page is not working. </p>
Copy file name to clipboardExpand all lines: src/components/web-components/web-components.tsx
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,9 @@ export class WebComponents {
14
14
return(
15
15
<div>
16
16
<p>URL of this component library:<ahref="https://sanjeetkumaritoutlook.github.io/stenciljs-components/"target="_blank">Visit</a></p>
17
+
<p>by Default,Stencil Web app creates three components:app-root, app-home, app-profile with Routung from "stencil-router-v2" pre-installed </p>
18
+
<p>To avoid conflict with npm package (stenciljs-components) which has similar naming components, renamed the component in this web app to app-home-page and app-profile-page respectively</p>
19
+
17
20
<my-rich-text-editorinitial-value="this is initial value"placeholder="angular placeholder"></my-rich-text-editor>
0 commit comments