Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-champagne committed Jun 12, 2024
0 parents commit 2f0fe22
Show file tree
Hide file tree
Showing 10 changed files with 320 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/hello-friend-ng"]
path = themes/hello-friend-ng
url = https://github.com/rhazdon/hugo-theme-hello-friend-ng.git
5 changes: 5 additions & 0 deletions 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
+++
Binary file added assets/kestrellogotmp.bmp
Binary file not shown.
5 changes: 5 additions & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
We are a group of quantum optimal control researchers and software engineers looking to bring the best quantum control software to many prominent quantum hardware platforms.

Many of the innovations in modern control techniques, often seen in robotics applications, bear deep relevance to controlling qubits of today's quantum computers. To control qubits to apply computational gates with the highest fidelity, shortest time, all while respecting the limits of our hardware requires solving difficult problems. Leveraging ___ techniques, solutions to these problems can be found and further optimized through expirimentation.

Improving the fidelity of gate operations will bring more scalable, fault-tolerant, and possibly error-corrected quantum chips closer to today.
3 changes: 3 additions & 0 deletions content/contact.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Email us at:

`contact at kestrelquantum dot com`
11 changes: 11 additions & 0 deletions content/posts/2024-06-11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Launching the Kestrel blog
date: "2024-06-11 21:26:31.995 -0400"
draft: false
---

Hi everyone! We are proud to annouce to launch of our new website and blog covering various technological developments and improvements as we work on delivering the best quantum optimal control software.

Check out our work on the Julia package(s) [Piccolo.jl](https://github.com/aarontrowbridge/Piccolo.jl) (meta-package), and [QuantumCollocation.jl](https://github.com/aarontrowbridge/QuantumCollocation.jl)

**The Kestrel Team**
67 changes: 67 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
baseurl = "localhost"
title = "Piccolo.jl"
languageCode = "en-us"
theme = "hello-friend-ng"
paginate = 10

[params]
dateform = "Jan 2, 2006"
dateformShort = "Jan 2"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04"

# Subtitle for home
homeSubtitle = "for quantum optimal control"

# Set disableReadOtherPosts to true in order to hide the links to other posts.
disableReadOtherPosts = false

# Enable sharing buttons, if you like
enableSharingButtons = true

# Show a global language switcher in the navigation bar
enableGlobalLanguageMenu = true

# Metadata mostly used in document's head
description = "Kestrel Quantum - quantum optimal control"
keywords = "homepage, blog"
images = [""]

[taxonomies]
category = "blog"
tag = "tags"
series = "series"

[languages]
[languages.en.params]
title = "Kestrel Quantum"
keywords = ""
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
readOtherPosts = "Read other posts"
subtitle = "Towards better qubits"

[languages.en.params.logo]
logoText = "Kestrel Quantum"
logoHomeLink = "/"
logoMark = " "
logoCursorColor = "MediumTurquoise"
logoCursorAnimate = "2s"

path = "img/kestrellogotmp.svg"
# alt = "Kestrel - bird of prey"

# And you can even create generic menu
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "/posts"

[[menu.main]]
identifier = "about"
name = "About"
url = "/about"

[[menu.main]]
identifier = "contact us"
name = "Contact"
url = "/contact"
5 changes: 5 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [ hugo ];
}
220 changes: 220 additions & 0 deletions static/img/kestrellogotmp.svg
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 themes/hello-friend-ng
Submodule hello-friend-ng added at 5c9a5f

0 comments on commit 2f0fe22

Please sign in to comment.