From 3e6a31685aae78e21bc01c0760347b8b9b43c1f0 Mon Sep 17 00:00:00 2001
From: weru <fromweru@gmail.com>
Date: Tue, 03 Jun 2025 15:47:39 +0000
Subject: [PATCH] cleanup #147

---
 exampleSite/go.mod                      |    1 -
 go.mod                                  |    2 +-
 exampleSite/hugo.toml                   |    2 +-
 exampleSite/go.sum                      |    2 --
 exampleSite/config/_default/params.toml |   34 +++++++++++++++++++---------------
 5 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/exampleSite/config/_default/params.toml b/exampleSite/config/_default/params.toml
index 8f2c68d..837f1bf 100644
--- a/exampleSite/config/_default/params.toml
+++ b/exampleSite/config/_default/params.toml
@@ -5,12 +5,12 @@
 
 blogDir = "blog" # can be posts, blog e.t.c
 
-repo = "https://github.com/cellebyte/compose"
+repo = "https://github.com/onweru/compose"
 
 time_format_blog = "Monday, January 02, 2006"
 time_format_default = "January 2, 2006"
-enableDarkMode = false # set to false to disable darkmode by default # user will still have the option to use dark mode
-defaultLightingMode = "auto" # other possible values: "dark", "light"
+enableDarkMode = false                        # set to false to disable darkmode by default # user will still have the option to use dark mode
+defaultLightingMode = "auto"                  # other possible values: "dark", "light"
 
 # sets the maximum number of lines per codeblock. The codeblock will however be scrollable and expandable.
 codeMaxLines = 10
@@ -21,7 +21,11 @@
 # By default the template will look for icons under the icons directory. In some situations you might wanna change that. edit the line below
 # iconsPath = 'icons/'
 
-otherSearchableFields = ["Tags", "Categories", "CustomField"] # As they appear in frontmatter
+otherSearchableFields = [
+  "Tags",
+  "Categories",
+  "CustomField",
+] # As they appear in frontmatter
 
 # Defaults to true if not set
 # Enable copyRight Footer Stamp. Takes in attribution
@@ -32,24 +36,24 @@
 on = true
 global = false # turn to `true` to enable global search
 [search.algolia]
-enable = false # if false search will default to fusejs
-id = "Q40WQQX84U" # Application ID
-index = "compose" # Index name
+enable = false                           # if false search will default to fusejs
+id = "Q40WQQX84U"                        # Application ID
+index = "compose"                        # Index name
 key = "da87401a458102ec6bbd6cc5e5cf8d95" # Search-Only API Key
 
 # Site logo
 [logo]
-  lightMode = "images/compose.svg"
-  darkMode = "images/compose-light.svg"
+lightMode = "images/compose.svg"
+darkMode = "images/compose-light.svg"
 
 [source]
-  name = "GitHub"
-  iconLight = "images/GitHubMarkLight.svg"
-  iconDark = "images/GitHubMarkDark.svg"
-  url = "https://github.com/cellebyte/compose/"
+name = "GitHub"
+iconLight = "images/GitHubMarkLight.svg"
+iconDark = "images/GitHubMarkDark.svg"
+url = "https://github.com/onweru/compose/"
 
 # optional
 # attribution. Feel free to delete this
 [author]
-  name = "Weru"
-  url = "https://neuralvibes.com/author/"
+name = "Weru"
+url = "https://neuralvibes.com/author/"
diff --git a/exampleSite/go.mod b/exampleSite/go.mod
index c3dd434..f48d4a9 100644
--- a/exampleSite/go.mod
+++ b/exampleSite/go.mod
@@ -3,6 +3,5 @@
 go 1.19
 
 require (
-	github.com/cellebyte/compose v0.0.0-20250505215933-ccbacb4e1f7a // indirect
 	github.com/onweru/compose v0.0.0-20250123191918-095317e5c72c // indirect
 )
diff --git a/exampleSite/go.sum b/exampleSite/go.sum
index f12da1f..7fbce7e 100644
--- a/exampleSite/go.sum
+++ b/exampleSite/go.sum
@@ -1,5 +1,3 @@
-github.com/cellebyte/compose v0.0.0-20250505215933-ccbacb4e1f7a h1:g9ueY7JzPOGeCwQJARy1cRBP7F2+os+L4GbcwavjqIA=
-github.com/cellebyte/compose v0.0.0-20250505215933-ccbacb4e1f7a/go.mod h1:YQ8xrDc38J+WTs/X6Yb3h3J1sn7jP58iL96vvUQg3Wo=
 github.com/onweru/compose v0.0.0-20230709163331-af3e133abf10 h1:6+OU3YpznL1bAy1s4B9KhEteRN+qo5T9vgYTWuGHpLw=
 github.com/onweru/compose v0.0.0-20230709163331-af3e133abf10/go.mod h1:tf1kQIBUcwJ/3mRFU5eiMrMvsDScVTK2IEFsZE3hZOc=
 github.com/onweru/compose v0.0.0-20230709170553-cdf6b3d268e3 h1:LQ9aw508QrowSWfr8m7Q43AelhGTaNhX+obnkCWefKg=
diff --git a/exampleSite/hugo.toml b/exampleSite/hugo.toml
index a1a657c..4f1cc7e 100644
--- a/exampleSite/hugo.toml
+++ b/exampleSite/hugo.toml
@@ -4,7 +4,7 @@
 # this example loads the theme as hugo module
 # comment out line below, and uncomment the line after it if you prefer to load the theme normally
 theme = [
-  "github.com/cellebyte/compose",
+  "github.com/onweru/compose",
 ] # edit this if you'ld rather use a fork of this repo
 # theme = "compose"
 enableGitInfo = true
diff --git a/go.mod b/go.mod
index fc08623..e90b620 100644
--- a/go.mod
+++ b/go.mod
@@ -1,3 +1,3 @@
-module github.com/cellebyte/compose
+module github.com/onweru/compose
 
 go 1.20

--
Gitblit v1.10.0