From aac28383e179963c95b67a02f93f8730fb5ad74c Mon Sep 17 00:00:00 2001 From: wheattoast11 Date: Wed, 20 Nov 2024 13:56:52 -0600 Subject: [PATCH] update index.html --- .github/workflows/deploy.yml | 34 +++---------- counter.js | 9 ++++ index.html | 96 ++++++++++++++---------------------- vite.config.js | 6 +-- 4 files changed, 55 insertions(+), 90 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0cabbf2..1f50f3c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,40 +2,22 @@ name: Deploy to GitHub Pages on: push: - branches: [ "main" ] - workflow_dispatch: + branches: ["main"] permissions: contents: write - pages: write - id-token: write jobs: - build-and-deploy: + deploy: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - with: - persist-credentials: false - - - name: Install Node.js - uses: actions/setup-node@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 18 - - - name: Install Dependencies - run: npm install - - - name: Build - run: npm run build - - - name: Deploy to GitHub Pages - uses: JamesIves/github-pages-deploy-action@v4 + - run: npm install + - run: npm run build + - uses: JamesIves/github-pages-deploy-action@v4 with: folder: dist - branch: gh-pages - clean: true - clean-exclude: | - .nojekyll - force: true \ No newline at end of file + branch: gh-pages \ No newline at end of file diff --git a/counter.js b/counter.js index e69de29..881e2d7 100644 --- a/counter.js +++ b/counter.js @@ -0,0 +1,9 @@ +export function setupCounter(element) { + let counter = 0 + const setCounter = (count) => { + counter = count + element.innerHTML = `count is ${counter}` + } + element.addEventListener('click', () => setCounter(counter + 1)) + setCounter(0) +} diff --git a/index.html b/index.html index 9724653..4d61cc5 100644 --- a/index.html +++ b/index.html @@ -3,80 +3,56 @@ - Intuition Labs LLC - - - + Intuition Labs LLC - AI Research & Consulting + -
+ +
-
-
- Intuition Labs Logo -

Intuition Labs LLC

-
- -
-

Transforming AI strategy through polymathic expertise and technical innovation

+

Intuition Labs

+

Pioneering the future of AI through research and strategic innovation

-
-

Experience & Expertise

-
-
-

Enterprise AI Strategy / Google

-
    -
  • Architected first Enterprise Gen AI GTM for VC-backed customers
  • -
  • Pioneered LLM-powered sales enablement systems
  • -
  • Led Cloud-wide tech stack transformation (PM/PgM)
  • -
  • 30k+ hours annual productivity improvement
  • -
-
-
-

Industry Transformation / ZS

-
    -
  • Global PMI for largest ag-sci merger (60+ countries)
  • -
  • COVID response strategy for MRNA vaccine manufacturers
  • -
  • Enterprise systems architecture across industries
  • -
  • Performance management for mega-cap enterprises
  • -
-
+
+

Our Vision

+

Transforming enterprises through cutting-edge AI solutions and polymathic expertise

+
+ + Read Our Manifesto
-
-

Services

+
+

Featured Solutions

-
-

Strategic AI Innovation

-
    -
  • Enterprise AI Implementation Strategy
  • -
  • LLM & Agent System Architecture
  • -
  • GTM Strategy Development
  • -
  • Complex System Integration
  • -
+
+

Enterprise AI Strategy

+

Comprehensive AI implementation and transformation roadmaps

+ Learn More →
-
-

Technical Implementation

-
    -
  • Custom AI Agent Development
  • -
  • Advanced Prompt Engineering
  • -
  • Multi-modal System Design
  • -
  • Process Automation & Optimization
  • -
+
+

LLM Systems

+

Custom language model development and integration

+ Learn More → +
+
+

AI Agents

+

Autonomous agent systems for process automation

+ Learn More →
-
- Contact: Tej Desai - Youtube - LinkedIn -
+
- - - + \ No newline at end of file diff --git a/vite.config.js b/vite.config.js index 3ac4da0..da18f23 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,10 +1,8 @@ import { defineConfig } from 'vite' export default defineConfig({ - base: '/wheattoast11.github.io/', // Add your repository name + base: '/', build: { - outDir: 'dist', - assetsDir: 'assets', - sourcemap: true + outDir: 'dist' } }) \ No newline at end of file