Skip to content

Commit

Permalink
Merge pull request #1 from init4tech/dylan/init
Browse files Browse the repository at this point in the history
Adds basic theme, homepage, and about page
  • Loading branch information
dylanlott authored Apr 18, 2024
2 parents 5dfe6a5 + f122852 commit 576038a
Show file tree
Hide file tree
Showing 9 changed files with 98 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
init4/public
init4/resources/*
init4/.hugo_build.lock
5 changes: 5 additions & 0 deletions init4/archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++
20 changes: 20 additions & 0 deletions init4/content/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: "Home"
date: 2024-04-15
draft: false
---

***> research cooperative building next gen ethereum. we’re in it for the technology.***

Init4 is building a blazing fast, completely customizeable, and bridgeless rollup. By removing proving systems and enabling direct mainnet liquidity access, init4 provides a seamless and stringently secure end user experience.

### **✅ What's cool**

- 🌐 **Direct Mainnet Access**: Hook into Ethereum's liquidity with a bridgeless rollup and experience seamless transactions.
-**Blazing Fast**: Built on Reth, Init4 focuses on performance through simplicity and minimal architecture.
- 🛠️ **Simplified Architecture**: No proving system means no complicated cat-and-mouse games, removing an entire attack surface from the rollup.
- 🤝 **Aligned Incentives**: Init4 gives builders the opportunity at MEV share and sequencer profits.

## 🎀 💻 **Follow us on X to see more**

**[@init4tech](https://x.com/init4tech)**
9 changes: 9 additions & 0 deletions init4/content/posts/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = 'About'
date = 2024-04-15T18:54:42-06:00
draft = true
+++

![networking](/networking.png)

init4 is a research cooperative building next-gen ethereum.
Empty file added init4/css/custom.css
Empty file.
60 changes: 60 additions & 0 deletions init4/hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
baseURL = 'https://init4.technology/'
languageCode = 'en-us'
title = 'init4'

# Main menu which appears below site header.
[[menu.main]]
name = "Home"
url = "/"
weight = 1

[[menu.main]]
name = "Blog"
url = "/posts"
weight = 2

[markup]
[markup.tableOfContents]
endLevel = 4
ordered = false
startLevel = 2
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = true
lineNumbersInTable = false
noClasses = true
style = "dracula"
tabWidth = 4

[params]
colortheme = "white" # dark, light, white, or classic
rss = false # generate rss feed. default value is false
googleAnalyticsAsync = true # use asynchronous tracking. Synchronous tracking by default
showAllPostsArchive = false # default
logo="logo.png"
# Home page settings
mainSection = "posts" # your main section
showAllPostsOnHomePage = false # default
postsOnHomePage = 0 # this option will be ignored if showAllPostsOnHomePage is set to true
tagsOverview = false # show tags overview by default.
# showProjectsList = true # show projects list by default (if projects data file exists).
# projectsUrl = "https://github.com/gohugoio" # title link for projects list

# https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
dateFormat = "2006-01-02" # default

# Post page settings
show_updated = true # default
showReadTime = true # default

# the value of name should be an valid font awesome icon name (brands type)
# https://fontawesome.com/icons?d=gallery&s=brands
[[params.social]]
name = "github"
link = "https://github.com/init4tech"
[[params.social]]
name = "email"
link = "[email protected]" # no need for "mailto:" in the head
Binary file added init4/static/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added init4/static/networking.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions init4/themes/cactus
Submodule cactus added at 801e99

0 comments on commit 576038a

Please sign in to comment.