Skip to content

Commit

Permalink
Feature/Open Graph Metadata (#1)
Browse files Browse the repository at this point in the history
* Added .editorconfig

* Added Open Graph Metadata
  • Loading branch information
parzival-space authored May 17, 2024
1 parent 8bc8a30 commit 1f4ebf0
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 10 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 2

34 changes: 24 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OLG Group</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.svg">

<!-- Meta Tags -->
<title>OLG Group</title>
<meta name="description" content="Empowering Your Business with Smart IT Solutions and Consulting Expertise.">
<meta property="og:url" content="https://olg-group.com/">
<meta property="og:type" content="website">
<meta property="og:title" content="OLG Group">
<meta property="og:description" content="Empowering Your Business with Smart IT Solutions and Consulting Expertise.">
<meta property="og:image" content="/open-graph.png">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="edge.parzival.space">
<meta property="twitter:url" content="https://olg-group.com/">
<meta name="twitter:title" content="OLG Group">
<meta name="twitter:description" content="Empowering Your Business with Smart IT Solutions and Consulting Expertise.">
<meta name="twitter:image" content="/open-graph.png">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Binary file added public/open-graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1f4ebf0

Please sign in to comment.